Advertisement
crob7313

if u wanna collab reply

Apr 12th, 2021
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. auto sell:
  2. while true do
  3. wait(0.000001)
  4. game:GetService("ReplicatedStorage").Functions.Sell:FireServer()
  5. end
  6.  
  7.  
  8. auto collect koins:
  9. while true do
  10. local args = {
  11. [1] = 1
  12. }
  13.  
  14. game:GetService("ReplicatedStorage").Functions.CollectCoin:FireServer(unpack(args))
  15.  
  16. wait(0.00001)
  17. end
  18.  
  19.  
  20.  
  21. auto rebirth:
  22. while true do
  23. wait(0.01)
  24. local args = {
  25. [1] = 1
  26. }
  27.  
  28. game:GetService("ReplicatedStorage").Functions.Rebirth:FireServer(unpack(args))
  29.  
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement