PLS DONATE ROBUX BOOSTER SCRIPT!

Uploaded On
Script Credit :- CoreLua01
Features

You raised 95 Robux.

The script would set the booth to "Goal: 100 Robux".

Players will donate if they think it's reaching your goal.

 

this script increases your luck of getting donated (to a point)

This script takes your received amount and then sets the text of the booth to "Goal: (your received amount + 5)

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

while wait(1) do local Players = game:GetService("Players") local Raised = Players.LocalPlayer.leaderstats.Raised local RaisedS = tostring(Players.LocalPlayer.leaderstats.Raised.Value) local goal = ('GOAL: ') local current = (' CURRENT: ') function msg(text) local A_1 = (goal.. ('%s'):format(text) ..current.. ('%s'):format(RaisedS)) local A_2 = "booth" local event = game:GetService("ReplicatedStorage").Events.EditBooth event:FireServer(A_1, A_2) end print(Raised.Value) msg(tostring(Raised.Value + 5)) end