getgenv().autoSpeed = true -- change to false to stop autospeed
getgenv().autoRebirth = true -- change to false to stop autorebirth
local remotes = game:GetService("ReplicatedStorage").RemoteFunctions
function upgradeSpeed()
task.spawn(
function()
while getgenv().autoSpeed == true do
remotes:WaitForChild("UpgradeSpeed"):InvokeServer(5) -- change to 10 if you have enough money
wait()
end
end
)
end
function AutoRebirth()
task.spawn(
function()
while getgenv().autoRebirth == true do
remotes:WaitForChild("Rebirth"):InvokeServer()
wait()
end
end
)
end
-- start
upgradeSpeed()
AutoRebirth()
Comments
No comments yet
Be the first to share your thoughts!