-
What do you want to achieve? I’d like to achieve letting a user set a Color3 value in a settings script, which I’ve successfully done, but for one of the backgroundcolor’s on the GUI, I’d like it to be a darker version of the Color3 value.
-
What is the issue? The issue is, when I do it, it sometimes comes out darker, but a different color.
-
What solutions have you tried so far? I got the solution that I tried from here but that doesn’t seem to work the way I need it to.
Appreciate any help I get
--Data.StillColor is what it is in the Settings script.
--Getting the Color works, because it sets other BackgroundColor's to it, it is just getting this darker shade that I'm having trouble with.
ImageLabel.BackgroundColor3 = Color3.fromRGB((Data.StillColor.g*255)-.25,(Data.StillColor.r*255)-.25,(Data.StillColor.b*255)-.25)