I'm just trying to change the color3 value of a decal using
1 | face.Color 3 = Color 3. new( 255 , 205 , 148 ) |
But when I test it the decal just turns grey. How can I fix this?
Ok, ok. I see the problem. It is very easy to fix. See, you are changing the color wrong. You are putting color3.new
when you need to be putting color3.fromRGB
. All you have to do is change Color3.new
toColor3.fromRGB
.
1 | face.Color 3 = Color 3. fromRGB( 255 , 205 , 148 ) |
I actually ran into this problem once. I hope this fixed your problem!