Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

What do blocks use to gain a new color?

Asked by 10 years ago
local a = Workspace.Part

a.color3.new = (123, 212, 192)

end

That is nt working and I was wondering why.

2 answers

Log in to vote
0
Answered by 10 years ago

local a = game.Workspace.Part

a.BrickColor = BrickColor.new("Really red")

that will make it really red.

Ad
Log in to vote
0
Answered by 10 years ago

Parts use brickcolor. If you still want to use Color3, then use this code: game.Workspace.Part.BrickColor = BrickColor.new(Color3.new(123, 212, 192)) However, there are other ways. game.Workspace.Part.BrickColor = BrickColor.red() Makes it Bright red. game.Workspace.Part.BrickColor = BrickColor.new("Bright red") You can change that to any color from the paint tool. game.Workspace.Part.BrickColor = BrickColor.new(21) There are a lot of other colors not usually available. 21 is the code for Bright red. If you want to know all of the others, you can find them here.

Answer this question