RobuxLife
|
  |
| Joined: 19 Sep 2012 |
| Total Posts: 13336 |
|
|
| 27 Jul 2016 02:44 PM |
So I have a model full of parts, and I want their brick colors to be random every 1 second. This only changes one part's color.
local model = script.Parent
for _, v in pairs(model:GetChildren()) do if v.ClassName == "Part" then while wait(1) do v.BrickColor = BrickColor.Random() end end end
|
|
|
| Report Abuse |
|