When I use the following 2 colors the brick I assign the colors to end up looking exactly the same. Instead of taking the RGB values I’m trying to use the brick just selects the closest roblox color. (At least I think that’s what is happening.)
local TileColor1 = BrickColor.new(0,0.5,0)
local TileColor2 = BrickColor.new(0,0.45,0)
WHY do these appear the same and how can I fix it?
There’s a difference between BrickColor and Color. BrickColor takes in strings such as "Red", "Blue". Color takes in Color3 RGB coordinates. You can set the Color3 of a part from RGB using: Color3.fromRGB(value, value, value) and the BrickColor like this: BrickColor.new("Colour name").