I have been trying to find information on any possible way on how to do this for the last 10 minutes, I can’t seem to find anything on this.
How would this be done, any help would be amazing!
Thank you, Zonix.
1 Like
Yes, use Color3:ToHSV()
which returns H, S, and V in that order:
local color = Color3.new(0.5, 0.5, 0.5)
local h, s, v = color:ToHSV()
11 Likes