I would love to see support in the GUI color chooser for using HEX values.
It’s kind of a pain to chose a color, and have to input 3 values instead of just one.
It’s something small, but I think would be quite helpful.
I would love to see support in the GUI color chooser for using HEX values.
It’s kind of a pain to chose a color, and have to input 3 values instead of just one.
It’s something small, but I think would be quite helpful.
if you’re working with hex, certainly you can be clever enough to convert it to decimal
function hex2rgb(hex)
hex = hex:gsub("#","")
return tonumber("0x"..hex:sub(1,2)), tonumber("0x"..hex:sub(3,4)), tonumber("0x"..hex:sub(5,6))
end
Personally I don’t see why you wish to have HEX support, when you can enter colors and save them in ROBLOX studio
I just want it to be added to the Roblox Studio Color editor.