How to apply only the hair from the player humanoid description? And being able to see the hair

game:GetService(“Players”).PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Char)
local Hum = Char:WaitForChild(“Humanoid”)

	local HairID = game:GetService("Players"):GetHumanoidDescriptionFromUserId(Player.UserId).HairAccessory
	Hum:WaitForChild("HumanoidDescription").HairAccessory = HairID
	
	Hum:ApplyDescription(Hum.HumanoidDescription)
end)

end)

Someone told me to do this but the thing is Yes I can have the hair ID into the humanoidDescription but im still not able to see the hair.

This is a copy of a topic you already made: How to apply only the hair from the player humanoid description?
Please continue the conversation there instead of making a new one.

1 Like