Color3 issue with ROBLOX?

Hey.

I’ve been encountering this strange bug so much lately and I’m getting so mad at it.

Why is it getting white?

In script:
image

On a part (properties):
.image
Exact same Color.
Color: 120, 76, 22

I’m getting mad at this because it’s getting white even tho it’s legitimattely brown.

Help is appreciated, thanks.

Hello,
Your color is white. Color3.new goes from 0-1 rather than 0-255. To have it scale to 255, do Color3.fromRGB instead of Color3.new.

1 Like