Hello. Im using a loop that would change the brickcolor every second for 5 seconds, but the problem is that the loop doesn’t even run at all. Any help is appreciated, thanks
Op is a part
LOOP:
while countdown > 6 do
op.BrickColor = Color3.fromRGB(255, 0, 0)
op.Material = Enum.Material.Neon
task.wait(1)
op.BrickColor = Color3.fromRGB(0, 0, 0)
countdown = countdown + 1
print(countdown) end