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 10 years ago

no dynamic lighting

example: blue to red to purple in a loop

3 answers

Log in to vote
1
Answered by 10 years ago

Put this Script in the Brick.

local Time = 5 -- 5 Seconds

while wait() do
wait(Time )
script.Parent.BrickColor = BrickColor.new("Bright blue")
wait(Time )
script.Parent.BrickColor = BrickColor.new("Bright purple")
end
Ad
Log in to vote
0
Answered by 10 years ago

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

Log in to vote
0
Answered by 10 years ago
while true do
    script.Parent.BrickColor = BrickColor.new("Lime green")
wait(0.5)
    script.Parent.BrickColor = BrickColor.new("Really blue")
wait(1)
    script.Parent.BrickColor = BrickColor.new("Really red")
wait(0.8)
    script.Parent.BrickColor = BrickColor.new("Hot pink")
wait(0.6)
end

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

Answer this question