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

How to change into any BrickColor?

Asked by 4 years ago

What do I do to make it that I can use Brick colors with spaces

Box.BrickColor = BrickColor.Cyan()

Works for me but I tried

Box.BrickColor = BrickColor.NewYeller()

and

Box.BrickColor = BrickColor.New Yeller()

but they don't work

2 answers

Log in to vote
0
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

You have to supply the BrickColor you wish to use through the constructor function, there are no functions that can directly reference a unique colour, aside from the primary sets.

BrickColor.new("Cyan")
0
Because it had shown me some colour options but not all Tosik543 4 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

That doesn't because you didn't write it correctly This is the correct script :

Box.Brickcolor = BrickColor.new("Black") -- Brick will turn black

Answer this question