So I was trying to get rgb from Color3.fromRGB but instead returning 255 it returns 1
https://gyazo.com/dd568011041236adc4cee8a3bffde269
1 Like
It won’t return RGB in 255, 255, 255, it will be out of 1, so if you do want the RGB values you just have to multiply by 255.
Edit: A valid Color is 0.9, 0.3, 0.5, which you can * each number by 255 to get the value you desire.
1 Like
Ohhh thanks! didn’t know that lol