Advertisement
QwertyHacker

clicker madness script

Jul 25th, 2022 (edited)
809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.86 KB | None | 0 0
  1. _G.autoTap = true
  2. _G.autoRebirth = true
  3. _G.autoEgg = true
  4. Spawn(function()
  5.     while _G.autoTap == true do
  6.         local args = {[1] = 1}
  7.         game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ClickService.Click:FireServer(unpack(args))
  8.         wait()
  9.     end
  10. end)
  11. Spawn(function()
  12.     while _G.autoRebirth == true do
  13.         local args = {[1] = 100} -- Change the 100 to however many rebirths you want
  14.         game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.RebirthService.BuyRebirths:FireServer(unpack(args))
  15.         wait()
  16.     end
  17. end)
  18.  
  19. Spawn(function()
  20.     while _G.autoEgg == true do
  21.         local args = {[1] = "basic"} -- Change this to whatever egg you want to loop open
  22.         game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.EggService.Purchase:FireServer(unpack(args))
  23.         wait()
  24.     end
  25. end)
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement