So currently I made a script that changes the color of all parts in the workspace of that color
but how would i make it so it does it to the parts inside of models aswell
current script:
-----------------
local OldColor = {"Dark green"}
local NewColor = {"Pearl"}
for i,v in pairs (game.Workspace:GetChildren()) do
if v:IsA"Part" and v.BrickColor == BrickColor.new(table.concat(OldColor)) then
v.BrickColor = BrickColor.new(table.concat(NewColor))
end
end
https://twitter.com/RealAxeHeads |