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

Can you make a Color3 go to BrickColor?

Asked by 7 years ago

So, I know you can make a BrickColor value a Color3 Value by doing:

local BC = BrickColor.new("Really red").Color

But, how would you convert a Color3 value to a BrickColor value?

1 answer

Log in to vote
1
Answered by 7 years ago

The BrickColor Wiki explains this. Just use the Color3 as an argument.

part.BrickColor = BrickColor.new(Color3.new(1,1,1))-- White

There are a limited number of BrickColors, however, so this will pick the nearest one based on the Color3.

0
Okay, makes sense. Thanks! xXLegendarySoldierXx 129 — 7y
Ad

Answer this question