Any good plugins for mass deleting objects of a certain name?

I want to be able to mass delete objects of a certain name, but explorer wont work for it, because it shows the object’s parent as well. (And I need to delete thousands of objects that all have the same name, and are all in a model.)

Examples of my problem:
image
image

I was just wondering if anybody knew a plugin good for mass deleting? I tried searching the plugins tab, google, and the DevForum but wasn’t able to find anything. Thanks in advance

I’m not sure if there’s a plugin, but

for _,part in pairs(workspace:GetDescendants()) do
	if (part.Name == "urmom") then -- change what's in ""
		part:Destroy()
	end
end
4 Likes

Where would I run that? I know nothing about scripting

Run it in the Command Bar, below Output.

Run in it the command bar.

View > Command Bar
image

Then paste the code here:
image

and hit enter! :slight_smile:

1 Like