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

How do i repair my color loop changing script?

Asked by 4 years ago
Edited by DanzLua 4 years ago

--I've tried this script :

B = game.Workspace.Part

while true do

B.BrickColor = BrickColor.new("Really red")

wait(2)

B.BrickColor = BrickColor.new("Really black")

wait(2)

end
0
i see no problem, You could make the script better by making B a local variable... greatneil80 2647 — 4y

1 answer

Log in to vote
0
Answered by
2ndwann 131
4 years ago
Edited by DanzLua 4 years ago

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:

B = game.Workspace.Part

while true do

B.BrickColor = Color3.new(255, 0, 0) -- makes the brick "Really red"

wait(2)

B.BrickColor = Color3.new(0, 0, 0) -- makes the brick "Really black"

wait(2)

end
Ad

Answer this question