Convert HSV color to BrickColor3

Hi! I have a color picker that gets the color through Color3.fromHsv. Is there any way to convert this to BrickColor so that I can use it to change the color of a part? Thanks!

Why not use Color3.fromHSV to change the part’s color?

Part.Color = Color3.fromHSV(1, 1, 1)
1 Like

Oh. I don’t really use these often but when changing the part’s color, it will change the brick color automatically right? Thanks!

Just construct a Color3 value and use the BrickColor.new(), it certainly accepts it.

That said. BrickColor.new(Color3.fromHSV(h, s, v)) will work.

1 Like

Setting the color of the part does also change the BrickColor, yes

1 Like

Both answers solved my problem but I’m going to mark @anon81993163 's as the solution as it was exactly what I asked for. Thank you!