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 Layered Clothing Crash

The Layered Clothing Crash code is below. Copy & inject it into the game. Enjoy!

-- be R15 and wear layered clothing
for _,s in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
    if s:IsA("Motor6D") and s.Name ~= "Neck" then
        local fard = s.Parent
        s:Destroy()
        fard.CFrame = CFrame.new(9e9 * _,9e9* _,9e9*_)
        wait()
    end
end