Advertisement
24k_Dark

script

Feb 6th, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1.  
  2. getgenv().autoTap = true;
  3. getgenv().autoRebirth = true;
  4. getgenv().autoEgg = false;
  5.  
  6. local remotepath = game:GetService("ReplicatedStorage")
  7.  
  8. --autoclicker
  9. spawn(function()
  10. while autoTap == true do
  11. remotepath.Events.Click3:FireServer()
  12. wait()
  13. end
  14. end)
  15.  
  16. --autorebirth
  17. spawn(function()
  18. while autoRebirth == true do
  19. local args = {[1] = 1}
  20. remotepath.Events.Rebirth:FireServer(unpack(args))
  21. wait()
  22. end
  23. end)
  24.  
  25. --autohatch
  26. spawn(function()
  27. while autoEgg == true do
  28. local args = {[1] = "Basic",[2] = "Triple"}
  29. remotepath.Functions.Unbox:InvokeServer(unpack(args))
  30. wait()
  31. end
  32. end)
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement