Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How remove Models if it is empty?

Asked by 7 years ago
Edited 7 years ago

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?

1 answer

Log in to vote
1
Answered by 7 years ago

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
0
eh' User#11440 120 — 7y
0
Gud one :3 User#11440 120 — 7y
Ad

Answer this question