I have been scripting lately and I have been trying to change a color of a part with a Value, but I can’t seem to get it to work, the color simply goes black, and if I change the value to 1 it goes red
I have shortened the script so you can read the important part right away:
part = script.Parent.Part -- variable
part.Color = Color3.new(script.Parent.Value.Value) -- changes the color using color3
Things I have tried:
If I use a Color3Value the color simply goes black
If I use a string value the color is black
If I use a string value and it’s value is 1 then the color goes red ahem r g b
So my question is: how to be able to change the color to (209,32,90) with a Color3Value.
So basically I only can go with option 2 because I want to change the color sometimes (any random color) but that doesn’t work, and the first option isn’t what I can do in this position sadly