Find any script for Roblox

Enter the name of the game or script.

Script – Lifting Simulator

Thank you for using our website
Your script:

NO KEY

--if u need disable autofarm choose false
_G.AutoLifting = true; --change true to false to disable autolifting
_G.AutoSell = true --change true to false to disable autoselling
spawn(function()
while _G.AutoLifting ==  true do
local args = {
    [1] = {
        [1] = "GainMuscle",
    },}
wait()
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
end
end)
spawn(function()
    while _G.AutoSell == true do
local args = {
    [1] = {
        [1] = "SellMuscle",
    },
}
wait()
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
end
end)