Humanoid Body Colors Turning Black

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    Adding and changing clothes ID on humanoid mannequin

  2. What is the issue? Include screenshots / videos if possible!
    It changes the body colors all to black Only after updating the description

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I looked in the dev forums and the web but could only find bugs that had no answers

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!


local id = script.Parent["ShirtID"].Value;
local Humanoid = script.Parent["Mannaquin"]:FindFirstChildOfClass("Humanoid")
local desc = Humanoid:GetAppliedDescription() 
desc.Shirt = id
Humanoid:ApplyDescription(desc)

local id = script.Parent["PantsID"].Value;
local Humanoid = script.Parent["Mannaquin"]:FindFirstChildOfClass("Humanoid")
local desc = Humanoid:GetAppliedDescription() 
desc.Pants = id
Humanoid:ApplyDescription(desc)

Note: it turns the mannequin’s body colors black ( they aren’t black in studio before the clothes are equiped onto it ) and no script is changing the colors to black. I tested it before the script changes its clothes and it works, it only turns black after the humand description is updated. ( PS: There’s no clothes in the humanoid, the script is supposed to create them if that matters )

Try to check the color in humanoid description when the skin has changed.
Maybe then a solution can be found.

After the description is changed, the colors in the bodycolors are all dark black, but no script changed them to be that, so im not sure why that is happening or how to fix it

Colorsbefore
these are the colors before and:


these are the colors it changes to for some reason… after the humanoid desc changes

Just change colors in humanoid description at studio ( not runtime ).
oh…

That’s the thing, I don’t want them to change at all… they are changing on their own, i want them to stay what they were during studio and i have no scripts editing the colors

Can you attach the model sample, I’ll try it myself.

Mannequin Model and scripts.rbxm (7.8 KB) it works normal until you run the game in studio or game and the clothes change

You creating the humanoid description body colors are part of that.
The description overwrites them.
Try creating the humanoid description manually not with script.

Try this:
solution.rbxm (9.3 KB)

2 Likes

Works, thank you for the assistance!

1 Like