Dumb1236

Untitled

Jul 10th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. --turn off/on
  2. getgenv().autorebirth = true -- turn to false to turn off
  3. getgenv().autoclick = true -- turn to false to turn off
  4.  
  5. remote = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices
  6.  
  7. function tap()
  8. spawn(function()
  9. while getgenv().autoclick == true do
  10. local args = {[1] = 1}
  11. remote.ClickService.Click:FireServer(unpack(args))
  12. task.wait()
  13. end
  14. end)
  15. end
  16.  
  17. function autorebirth(rebirthamount)
  18. spawn(function()
  19. while getgenv().autorebirth == true do
  20. local args = {[1] = rebirthamount}
  21. remote.RebirthService.BuyRebirths:FireServer(unpack(args))
  22. task.wait()
  23. end
  24. end)
  25. end
  26.  
  27. -- rebirth settings
  28. autorebirth(10000)
  29. tap()
Add Comment
Please, Sign In to add comment