Is there a way to change the color on, let’s say, a model with 1200 parts with half of those parts being yellow. if I wanted to change only the yellow parts to another color, is there a way to accomplish this without having to recolor each part manually?
1 Like
You could try using the GetDescendants function and loop through em all, might be a bit laggy though.
for i,v in pairs(model:GetDescendants()) do
if (v:IsA("BasePart")) then
v.BrickColor = whatever
end
end
2 Likes
Thank you, this was what I needed.