So long ago, multiple parts in my game were cloned ontop of each other (like Ctrl + D), So I need a command line script that deletes multiple parts in the same position.
I have used one from the DevForum and it did not work. Mostly when I try, it deletes every single part in workspace.
for index, value in ipairs(game.Workspace:GetChildren()) if value:IsA("Part") then if value.Position == Vector3.new(0,0,0) then -- You can change it to where the parts are located value:Destroy() end wait() end end