I'm mainly referring to BrickColors and how many ways you can change the color of a brick. I know the regular way,
part.BrickColor = BrickColor.new("Really red")
But how many other ways are there to do this same thing?
You can use BrickColor.new()
, Color3.new()
, or BrickColor.new(Color3.new(0, 0, 0)
. I am not aware of any other ways to change the color of a brick other than these three methods.
Do you mean like if a brick has been touched like if a brick has been walked on it changes colors or just different types of code to change color?