Weld Assistance

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?

Screenshot 2022-08-02 230100

2 Likes

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
1 Like

Thank you so much, worked like a charm.

1 Like