Let’s say I have an RGB value: local color = color3.fromRGB(200,200,200)
In the Roblox color editor, it has a grayscale bar.
Via a script, how would I change the color value I have in the same way, making it lighter or darker?
One thing I noticed: When I change the grayscale bar, the val of the HSV changes, I think that is what I need to use. Do I change the RGB to a HSV value, decrease/increase the val, and then change it back to RGB?