--[[ Shitty Autofarm for "Lifting Simulator" Game link: https://www.roblox.com/games/3652625463/Lifting-Simulator --info-- set to true/false to turn off and on , im too lazy to add a gui for a switch or even a button press :P ]] getgenv().autofarm = true; function startAutofarm() spawn(function() while autofarm do local args = { [1] = { [1] = "GainMuscle" } } local args2 = { [1] = { [1] = "SellMuscle" } } game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args)) wait(1) game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args2)) end end) end startAutofarm()