I’m trying to make a GUI frame a color linked from a Color3Value. For instance I want a frame I made too be the colour of the Color3 string value.
Here’s what I have -
CloneFrame.ColorYes.BackgroundColor = v.Configuration.TypeV.ColorV.Value
In this case “ColorV” is the Color3Value and the “ColorYes” is the frame I want to be colored. The problem it gives me an error:
“Unable to assign property BackgroundColor. BrickColor expected, got Color3”
Thankss
NOVEIGMA
(NOVEIGMA)
June 2, 2022, 9:56pm
2
Do not confuse .BackgroundColor3 with .BackgroundColor. The former is for Color3 while the latter is for BrickColor.
1 Like
I replaced backgroundcolor with backgroundcolor3 and it gave me this error:
“Unable to assign property BackgroundColor3. Color3 expected, got BrickColor”
NOVEIGMA
(NOVEIGMA)
June 2, 2022, 10:55pm
4
Are you using Color3 or BrickColor? Make up your mind. Color3 only works with Color3 and vice versa
I was using a Color3 string the whole time, I’m confused? I don’t want to use brick color
Ah, I see now sorry about that, it was giving me that error because there was one color3 string and one brickcolor string in the model im using. Its hard to explain but it works now.