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?
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)