--I've tried this script :
01 | B = game.Workspace.Part |
02 |
03 | while true do |
04 |
05 | B.BrickColor = BrickColor.new( "Really red" ) |
06 |
07 | wait( 2 ) |
08 |
09 | B.BrickColor = BrickColor.new( "Really black" ) |
10 |
11 | wait( 2 ) |
12 |
13 | end |
I think you should user Color3 instead of BrickColor. I usually use Color3 instead of BrickColor
Color3 uses Red/Green/Blue values instead of color names.
Use the script with Color3:
01 | B = game.Workspace.Part |
02 |
03 | while true do |
04 |
05 | B.BrickColor = Color 3. new( 255 , 0 , 0 ) -- makes the brick "Really red" |
06 |
07 | wait( 2 ) |
08 |
09 | B.BrickColor = Color 3. new( 0 , 0 , 0 ) -- makes the brick "Really black" |
10 |
11 | wait( 2 ) |
12 |
13 | end |