Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- this sadly only works on a specific game, heres the link https://roblox.com/games/9498006165/ --
- getgenv().autoTap = true;
- getgenv().autoRebirth = true;
- getgenv().bugEgg = false;
- spawn(function()
- while autoTap == true do
- game:GetService("ReplicatedStorage").Events.Tap:FireServer()
- wait()
- end
- end)
- spawn(function()
- while autoRebirth == true do
- local args = {[1] = 364500}
- game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(unpack(args))
- wait()
- end
- end)
- spawn(function()
- while bugEgg == true do
- local args = {
- [1] = {},
- [2] = "Egg Name Here",
- [3] = 1}
- game:GetService("ReplicatedStorage").Events.HatchEgg:InvokeServer(unpack(args))
- wait(32)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment