Hello, i want to remove models with the same name and i want only to delete these models when they are empty they have nothing inside how can i do this?
Here is a script that removes empty models with a name that you set.
Hope this helps you!
local name = "testMod" -- name of the models you want to remove goes here while true do wait() local mods = workspace:getChildren() for i,v in pairs(mods) do if v:IsA("Model") and v.Name == name and (#(v:getChildren())==0) then -- if it is a model with 0 items inside it v:remove() end end end