Bird_7x
(XAML)
#1
I was wondering how to get a argument of Color3.fromHSV(). For example, I type
print(Color3.fromHSV(0.5,0.2,0).H)
Output:
0.5
It will say that H is not a valid member of Color3. Please Help!
Please tell me if this is in the wrong category or I did anything wrong because I am new to the fourm.
sjr04
(uep)
#2
Because it’s not a valid member. Color3.toHSV
exists; it returns the hue, saturation, and value, respectively.
local h, s, v = Color3.toHSV(Color3.fromHSV(0.5, 0.2, 0.5))
The value cannot be zero otherwise it returns 0 three times
2 Likes