Changing BrickColor not working

So I’m trying to change the color of a mesh, however it’s not working. This is in a server script.

local Sphere = EffectsFolder:WaitForChild("Sphere"):Clone()
Sphere.BrickColor = BrickColor.new(4, 175, 236)

BrickColor in this way works with names, you need to provide the name of the color.

(I believe you were confused with Color3)

Something like this would work:

BrickColor.new("Bright red")
1 Like

Brickcolor is a string not a vector3

1 Like