Edwin1170

Lifting Simulator Script

Sep 7th, 2022 (edited)
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. --███████╗██████╗░░██╗░░░░░░░██╗██╗███╗░░██╗░░███╗░░░░███╗░░███████╗░█████╗░
  2. --██╔════╝██╔══██╗░██║░░██╗░░██║██║████╗░██║░████║░░░████║░░╚════██║██╔══██╗
  3. --█████╗░░██║░░██║░╚██╗████╗██╔╝██║██╔██╗██║██╔██║░░██╔██║░░░░░░██╔╝██║░░██║
  4. --██╔══╝░░██║░░██║░░████╔═████║░██║██║╚████║╚═╝██║░░╚═╝██║░░░░░██╔╝░██║░░██║
  5. --███████╗██████╔╝░░╚██╔╝░╚██╔╝░██║██║░╚███║███████╗███████╗░░██╔╝░░╚█████╔╝
  6. --╚══════╝╚═════╝░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚══╝╚══════╝╚══════╝░░╚═╝░░░░╚════╝░
  7. --🆂🆄🅱🆂🅲🆁🅸🅱🅴
  8. --]]
  9. --if u need disable autofarm choose false
  10.  
  11. _G.AutoLifting = true; --make this false to stop auto Lifting
  12. _G.AutoSell = true --make this false to stop auto sell
  13. spawn(function()
  14. while _G.AutoLifting == true do
  15.  
  16. local args = {
  17. [1] = {
  18. [1] = "GainMuscle",
  19. },}
  20. wait()
  21.  
  22. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  23.  
  24. end
  25. end)
  26.  
  27.  
  28.  
  29. spawn(function()
  30. while _G.AutoSell == true do
  31. local args = {
  32. [1] = {
  33. [1] = "SellMuscle",
  34. },
  35. }
  36. wait()
  37. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment