When i try to change a colour of a block it doesnt work. Here is the code
game.workspace.Part.BrickColor = BrickColor.new("Really red")
wait (5)
game.workspace.Part.BrickColor = BrickColor.new("Electric blue")
wait (5)
game.workspace.Part.BrickColor = BrickColor.new ("Sea green")
wait (5)
game.workspace.Part.BrickColor = BrickColor.new ("New Yeller") wait (5)
repeat
workspace is "Workspace" and if you want this to loop, then use while true do
01 | while true do -- this loops your script while true = true. And true will always = true lol |
02 | game.Workspace.Part.BrickColor = BrickColor.new( "Really red" ) -- Capitalization is key :) |
03 | wait ( 5 ) |
04 | game.Workspace.Part.BrickColor = BrickColor.new( "Electric blue" ) |
05 | wait ( 5 ) |
06 | game.Workspace.Part.BrickColor = BrickColor.new ( "Sea green" ) |
07 | wait ( 5 ) |
08 | game.Workspace.Part.BrickColor = BrickColor.new ( "New Yeller" ) |
09 | wait ( 5 ) |
10 | end |
Hope this helped. Accept if it did. :)