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

keep body colors on some of the morphs skin?

Asked by
infmilk -3
4 years ago

How would you make a morph that keeps the head or torso color and applies it the the head or torso added color (a little example below i don't know how to post pictures) I have tried looking everywhere but there isn't anything. I don't know about body color coding so I couldn't make anything.

https://cdn.discordapp.com/attachments/468205030260998170/680803571142623330/unknown.png

0
its unknown.png it cut off infmilk -3 — 4y

1 answer

Log in to vote
0
Answered by
Norbunny 555 Moderation Voter
4 years ago
Edited 4 years ago

Roblox characters have an instance called BodyColors

You can access it, to get both the TorsoColor or TorsoColor3, same applies for the head and limbs.

That said, you can just set the morph's colors to match the BodyColor's!

I'm not sure how your model is structured, but you can just

-- To be placed in a script
local bodyColors = character["Body Colors"] -- character = the player you are trying to morph's character
local morph = morph

morph.Head.Color =  Color3.new(bodyColors.HeadColor3)
0
how would i add a block and color it to the torsos color or would that work how would i put it infmilk -3 — 4y
0
If what you wish is to create a block, then you can use Instance.new() to create a new part, then afterwards, part.Color3 = Color3.new(character["Body Colors"].TorsoColor3), just like I shown you above. Norbunny 555 — 4y
Ad

Answer this question