Humanoid Description weird colors

So I want to make my characters not look like a smurf

So for example I set the headcolor to supposedly yellow right?, when I test it my character is blue like a smurf

image

this is what I get in game
image

I have tried using different colors but for example if I use blue in studio I get green in game

humanoidDescription.HeadColor = Color3.new(255, 255, 127)
humanoidDescription.TorsoColor = Color3.new(255, 255, 127)
humanoidDescription.LeftArmColor = Color3.new(255, 255, 127)
humanoidDescription.RightArmColor = Color3.new(255, 255, 127)
humanoidDescription.LeftLegColor = Color3.new(255, 255, 127)
humanoidDescription.RightLegColor = Color3.new(255, 255, 127)

You need to use Color3.fromRGB(r, g, b) to actually use those values.

humanoidDescription.HeadColor = Color3.fromRGB(255, 255, 127)
humanoidDescription.TorsoColor = Color3.fromRGB(255, 255, 127)
humanoidDescription.LeftArmColor = Color3.fromRGB(255, 255, 127)
humanoidDescription.RightArmColor = Color3.fromRGB(255, 255, 127)
humanoidDescription.LeftLegColor = Color3.fromRGB(255, 255, 127)
humanoidDescription.RightLegColor = Color3.fromRGB(255, 255, 127)
1 Like