How do I get rid of attachments on my NPC?

I tried checking on YouTube and other sites but none of the worked. Help appreciated!

Just delete them inside of the model, just go to each part and delete it, also I think this is a #help-and-feedback:building-support question not #help-and-feedback:scripting-support

edit: or you could just do the easier way :arrow_down:

1 Like

To stop seeing them, disable Model > Constraint Details:


This won’t delete them. To delete them all, select the character in Studio and paste and run this code in the command line:

for _, descendant in ipairs(game:GetService("Selection"):Get()[1]:GetDescendants()) do
    if descendant:IsA("Attachment") then
        descendant:Destroy()
    end
end
3 Likes