You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
Adding and changing clothes ID on humanoid mannequin -
What is the issue? Include screenshots / videos if possible!
It changes the body colors all to black Only after updating the description -
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 )