Is there a way you can get each color from a Color3 value through a script? There is one color3 I wanted to get:
Convert.TextStrokeColor3 = Color3.new(0, 0.65098, 1)
so what would I do to be able to get the values of 0, 0.65098, 1?
Color3 values have individual properties for this, indexed as value.R
, value.G
and value.B
. More information on Color3 can be found here.
Hope this helps! If you have any further questions feel free to comment or look things up on the devforum.