Ive tried millions of times and it wouldnt work. PLEASE HELP
BodyColors instance in the player's character
1 | game.Players.LocalPlayer.Character [ "Body Colors" ] .HeadColor = "Really Red" |
there's an example.
you could index to the current body color of the player before touching the character
1 | local BColor = game.Players.LocalPlayer.Character [ "Body Colors" ] .TorsoColor 3 |
then after removing the normal humanoid you can index to each body part in your custom characters body, then set the color of the part as BColor.
1 | --[[name of your part--]] .Color = BColor |