brick = script.Parent while true do brick.BrickC0lor = BrickColor.random() wait(0.5) -- always include the wait in "while true do" (infinite loops). Otherwise your program will crash. end
Here you go brother. I just wrote and tested it. This one works:
----PercyDHunters: Just stick this into the part and there ya go while true do script.Parent.Color = Color3.new(math.random(), math.random(), math.random()) wait(0.5) end