Hi there. In this specific model, there are multiple MeshParts, so I was wondering if it was possible to see where Part1 is located in this weld?

Hi there. In this specific model, there are multiple MeshParts, so I was wondering if it was possible to see where Part1 is located in this weld?

Run a command through the command bar looping through your model:
for i, v in pairs(workspace.Model:GetChildren()) do if v.Name == "MeshPart" then v.Name = "MeshPart"..i end end
Thank you so much, worked like a charm.