HumanoidDescription Changing colors

How would i stop the humanoid description from touching the body colors?

if size == "kid" then
		local humanoid = player.Character and player.Character:FindFirstChild("Humanoid")
		if humanoid then
			local descriptionClone = humanoid:GetAppliedDescription()
			descriptionClone.HeightScale = 0.9
			descriptionClone.HeadScale = 1
			humanoid:ApplyDescription(descriptionClone)
		end
	end

Code ^^

It shouldn’t change the body color in the first place, there must have been another script that is changing your body colors. I even downloaded the place file from to prove it to you, I will edit once the gif is uploaded:

The code I changed in double-height to your script
local module = {}

function module.execute()
	for _,player in pairs(game.Players:GetChildren()) do
		local humanoid = player.Character and player.Character:FindFirstChild("Humanoid")
		if humanoid then
			local descriptionClone = humanoid:GetAppliedDescription()
			--descriptionClone.HeightScale*2
			descriptionClone.HeightScale = 0.5
			descriptionClone.HeadScale = 1
			-- Apply modified "descriptionClone" to humanoid
			humanoid:ApplyDescription(descriptionClone)
		end
	end
end

return module

Edit: Proof

9fe9d2ab402c96cfcab59d441763de69

1 Like