Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- getgenv().autoTap = true;
- getgenv().autoRebirth = true;
- getgenv().autoEgg = false;
- local remotepath = game:GetService("ReplicatedStorage")
- --autoclicker
- spawn(function()
- while autoTap == true do
- remotepath.Events.Click3:FireServer()
- wait()
- end
- end)
- --autorebirth
- spawn(function()
- while autoRebirth == true do
- local args = {[1] = 1}
- remotepath.Events.Rebirth:FireServer(unpack(args))
- wait()
- end
- end)
- --autohatch
- spawn(function()
- while autoEgg == true do
- local args = {[1] = "Basic",[2] = "Triple"}
- remotepath.Functions.Unbox:InvokeServer(unpack(args))
- wait()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement