All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Multi Stats Farm

The Multi Stats Farm code is below. Copy & inject it into the game. Enjoy!

?Muscle Legends - Farm STR & DURABILITY / STR & AGILITY at the same time
game:GetService("RunService").Stepped:connect(
    function()
        for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
            if tool.Name == "Punch" or tool.Name == "Ground Slam" or tool.Name == "Stomp" then
                tool:Destroy()
            elseif tool:IsA("Tool") then
                tool.Parent = game:GetService("Players").LocalPlayer.Character
            end
        end

        local tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
        tool:Activate()
    end)

game.Players.LocalPlayer.Character.Humanoid.Health = 0