Changing Color3 through Color3Value not working

I’ve been trying to add a part to my script where it changes the color of an image gui to a color3 value in a color3value instance. But it always ends up just being black
TextBox.ChatBox.Outline.ImageColor3 = Color3.fromRGB(NPC.Detector.C3.Value)
NPC references a model named NPC
Detector is a part containing the value
and you can guess what C3 is
help would be appreciated!

1 Like

Change it to:

TextBox.ChatBox.Outline.ImageColor3 = NPC.Detector.C3.Value

1 Like

Yeah, that fixed it. Thank you!

1 Like