Advertisement
GamesNando

Lifting Simulator

Oct 26th, 2021
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. --if u need disable autofarm choose false
  2.  
  3. _G.AutoLifting = true;
  4. _G.AutoSell = true
  5. spawn(function()
  6. while _G.AutoLifting == true do
  7.  
  8. local args = {
  9. [1] = {
  10. [1] = "GainMuscle",
  11. },}
  12. wait()
  13.  
  14. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  15.  
  16. end
  17. end)
  18.  
  19.  
  20.  
  21. spawn(function()
  22. while _G.AutoSell == true do
  23. local args = {
  24. [1] = {
  25. [1] = "SellMuscle",
  26. },
  27. }
  28. wait()
  29. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  30. end
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement