this isn't a request site ... but put this into a script and place it in workspace
01 | game.Workspace.ChildAdded:connect( function (plr) |
03 | local playerinplayers = game.Players:FindFirstChild(plr.Name) |
04 | if playerinplayers ~ = nil then |
05 | playerinplayers.CanLoadCharacterAppearance = false |
06 | plr.Head.face.Texture = "" |
07 | local bodycolors = Instance.new( "BodyColors" , plr) |
08 | bodycolors.RightArmColor = BrickColor.new( "" ) |
09 | bodycolors.LeftArmColor = BrickColor.new( "" ) |
10 | bodycolors.LeftLegColor = BrickColor.new( "" ) |
11 | bodycolors.RightLegColor = BrickColor.new( "" ) |
12 | bodycolors.TorsoColor = BrickColor.new( "" ) |
13 | bodycolors.HeadColor = BrickColor.new( "" ) |
16 | local shirt = Instance.new( 'Shirt' , plr) |
17 | shirt.ShirtTemplate = ( "" ) |
19 | local pants = Instance.new( 'Pants' , plr) |
20 | pants.PantsTemplate = ( "" ) |
24 | local hair = game.Lighting [ "" ] :Clone() |
27 | local LL = game.Lighting [ "Left Leg" ] :Clone() |
29 | local LA = game.Lighting [ "Left Arm" ] :Clone() |
31 | local RL = game.Lighting [ "Right Leg" ] :Clone() |
33 | local RA = game.Lighting [ "Right Arm" ] :Clone() |
35 | local TR = game.Lighting.Torso:Clone() |
you will need to figure out how to remove your old hat// accessory yourself, but this should work just fine for you with a little work.
Closed as Too Broad by Goulstem and TheHospitalDev
This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.
Why was this question closed?