public paste
وو
—8 views506 chars
stdout
Paste content
local map = workspace:FindFirstChild("Map")
if map and map:FindFirstChild("GarageHitbox") then
map.GarageHitbox:Destroy()
end
local function deleteDoorSystem(obj)
if string.find(string.lower(obj.Name), "doorsystem") then
obj:Destroy()
print("Deleted:", obj:GetFullName())
end
end
for _, obj in ipairs(workspace:GetDescendants()) do
deleteDoorSystem(obj)
end
workspace.DescendantAdded:Connect(function(obj)
task.wait()
deleteDoorSystem(obj)
end)$ tail -f comments.log
Comments [0]
// no comments yet