of     1   

Divitiae
#228350401Saturday, December 02, 2017 10:48 PM GMT

How would I make it so it will cycle through all of the parts in a model and change its colours from the table colours? Here's what I've made so far: parts = script.Parent:GetChildren() colours = {"Really red","Really blue"} while true do for i,v in pairs(parts) do if v:FindFirstChild("Part") == true then v.BrickColor = colours end end end
wafflecow321
#228351602Saturday, December 02, 2017 11:13 PM GMT

Theres a lot of things that need fixing here. First off, your table has two colors. So when you do the loop, you have to index one of the colors. Like this: colours[1]. This would return the first color. colours[2] would return the second color, because it is the 2nd value in the table. Also these are text values, not brickcolors. To make a a brickcolor you do BrickColor.new(--name of brickcolor--). So in your case, you can do this BrickColor.new(-- Get the red color from the table colours[1]) Ok so this is what your script should look like: parts = script.Parent:GetChildren() colours = {"Really red","Really blue"} while true do for i,v in pairs(parts) do if v:FindFirstChild("Part") == true then v.BrickColor = BrickColor.new(colours[1]) end end end I also noticed that you want it to go through everypart in the model, which im assuming means you want to also go through descendants. Heres what I would do. Also you should check if the child is a part. parts = script.Parent:GetChildren() colours = {"Really red","Really blue"} while true do for i,v in pairs(parts) do if v:IsAPart then v.BrickColor = BrickColor.new(colours[1]) end local Children = v:GetChildren() -- This loop puts all of the children of the object into the original table, which the loop is already going through, so it will do the same to them for x,y in pairs(Children) table.insert(parts,y) end end Hope this helps

    of     1