how to make part change to a random color every second roblox code example
Example: how to make part change to a random color every second roblox
parts = script.Parent
imp = 1
repeat
parts.BrickColor = BrickColor.Random()
wait(1)
until imp == 2
parts = script.Parent
imp = 1
repeat
parts.BrickColor = BrickColor.Random()
wait(1)
until imp == 2