Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Does anyone have a script to remove the players body parts and make them Blocky in R6?

Asked by 2 years ago

Im searching all over the internet but i cant find a script to remove the players body parts and make them blocky (in R6).

Does anyone have a working script for that?

1 answer

Log in to vote
0
Answered by 2 years ago

First, in the home tab of ROBLOX Studio, click "Game Settings" - then go to "Avatar". Select the Avatar Type to R6, and click save.

Second, insert a script object into Workspace or ServerScriptService and paste this code into that script:

game.Players.PlayerAdded:Connect(function(Plr)
    Plr.CharacterAppearanceLoaded:Connect(function(Chr)
        for _,child in pairs(Chr:GetChildren()) do
            if child:IsA("CharacterMesh") then
                child:Destroy()
            end
        end
    end)
end)
0
Thank you! :D Mattia_ATV 2 — 2y
0
Np SprinkledFruit101 135 — 2y
Ad

Answer this question