Simulation
local model = script.Parent
while true do
for num, child in pairs(model:GetChildren()) do
if child:IsA('Part') then
r=math.random(0,1)
g=math.random(0,1)
b=math.random(0,1)
child.BrickColor = BrickColor.new(r,g,b)
end
wait(0.05)