This is the code that changes the body colors.(And the only script that messes with that stuff)
if v:IsA("BodyColors") then local hue = Appearence[1] print(hue) v.HeadColor3 = Color3.fromHSV(33,116,hue) v.LeftArmColor3 = Color3.fromHSV(33,116,hue) v.LeftLegColor3 = Color3.fromHSV(33,116,hue) v.RightArmColor3 = Color3.fromHSV(33,116,hue) v.RightLegColor3 = Color3.fromHSV(33,116,hue) v.TorsoColor3 = Color3.fromHSV(33,116,hue) end
Hue prints as 222.5
Then when i go to check the bodycolors, I find something like this: https://gyazo.com/07f77a97f161ea7972d7e128e2707f68 Thats the server. The skin is the physical right color, but those numbers are whack. Then on the client I see this: https://gyazo.com/b6972f9324f61d6856af1889d510a8db Where everything is just brick grey. Im super confused as to why any of this is happening. I would love any help that is avalable.