Im trying to color all the parts from multiple models. like there is a model called: "Model" and the other one "Model2" and i want both the parts to color at the same time. If someone could help, thank you!
I'm not sure what you're asking in particular, but from what I read you could maybe try something like this?
function onClick() for index, descendant in pairs(descendants) do if descendant:IsA("Part") then --Change "Part" descendant.BrickColor = BrickColor.Green() end end script.Parent.ClickDetector.MouseClick:Connect(onClick)