1. --if u need disable autofarm choose false
  2. _G.AutoLifting = true;
  3. _G.AutoSell = true
  4. spawn(function()
  5. while _G.AutoLifting == true do
  6. local args = {
  7. [1] = {
  8. [1] = "GainMuscle",
  9. },}
  10. wait()
  11. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  12. end
  13. end)
  14. spawn(function()
  15. while _G.AutoSell == true do
  16. local args = {
  17. [1] = {
  18. [1] = "SellMuscle",
  19. },
  20. }
  21. wait()
  22. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  23. end
  24. end)