I am trying to make is so that a brick switches between two colours but it's not working
1 | brick = script.Parent |
2 | while true do |
3 | brick.BrickColor = BrickColor( "Bright Orange" ) |
4 | wait( 0.5 ) |
5 | brick.BrickColor = BrickColor( "Neon Orange" ) |
6 | end |
i would also appreciate it if someone could tell me how to make it fade between the colors instead of switching
Use
1 | brick = script.parent |
2 | while true do |
3 | brick.brickcolor = brickcolor.new( "Bright Orange" ) |
4 | wait( 0.5 ) |
5 | brick.brickcolor = brickcolor.new( "Neon Orange" ) |
6 | end |
to change it to a specifi color use .new