www.roblox-scripter.com

Roblox codes

Festival Tycoon script – (Buy all buttons)

Functions: Buy all buttons

Installation guide:
Copy the script from the button below.
Run any Injector (We recommend KRNL Injector)
Install it, insert the script and click execute
Enjoy it)

Thank you for using our website
Your script:

				
					local bullshit = game.Workspace.Buttons:GetDescendants()
local RemoteObjects = game:GetService("ReplicatedStorage").RemoteObjects
_G.DoBuy = true
while _G.DoBuy == true do
   for index, theshitofthebull in pairs(bullshit) do
       if (theshitofthebull.Name == "Head") then
           if (theshitofthebull.Transparency ~= 1) then
               RemoteObjects.RequestButtonPurchase:FireServer(theshitofthebull.Parent.Name)
          end
       end
   end
   wait()
end