Getting the arguments of Color3

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.

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