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)
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")
Brickcolor is a string not a vector3