Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How do you make bricks turn to another color?

Asked by 11 years ago

no dynamic lighting

example: blue to red to purple in a loop

3 answers

Log in to vote
1
Answered by 11 years ago

Put this Script in the Brick.

1local Time = 5 -- 5 Seconds
2 
3while wait() do
4wait(Time )
5script.Parent.BrickColor = BrickColor.new("Bright blue")
6wait(Time )
7script.Parent.BrickColor = BrickColor.new("Bright purple")
8end
Ad
Log in to vote
0
Answered by 11 years ago

Click the brick and go to Property's and change Brick Color :)

Log in to vote
0
Answered by 11 years ago
01while true do
02    script.Parent.BrickColor = BrickColor.new("Lime green")
03wait(0.5)
04    script.Parent.BrickColor = BrickColor.new("Really blue")
05wait(1)
06    script.Parent.BrickColor = BrickColor.new("Really red")
07wait(0.8)
08    script.Parent.BrickColor = BrickColor.new("Hot pink")
09wait(0.6)
10end

To make this work, put the script in your brick 'Turns Your Brick to Disco'

Answer this question