Color3.fromHSV is acting up on bodycolors. Fixable?
This is the code that changes the body colors.(And the only script that messes with that stuff)
01 | if v:IsA( "BodyColors" ) then |
02 | local hue = Appearence [ 1 ] |
04 | v.HeadColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
05 | v.LeftArmColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
06 | v.LeftLegColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
07 | v.RightArmColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
08 | v.RightLegColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
09 | v.TorsoColor 3 = Color 3. fromHSV( 33 , 116 ,hue) |
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.