Hello!
I was wondering how I would get individual RGB values, I have created a function that goes something like this:
local c = Color3.fromRGB(123, 123, 123)
local stringSplit = string.split(tostring(c), ',')
local r = stringSplit[1]
local g = stringSplit[2]
local b = stringSplit[3]
It works, but is there a more effective method?