Created by popvipi
Features:
for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
if string.match(v.Name, "EnemyDefeat") then
v:Destroy()
end
end
for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
if string.match(v.Name, "PlayerDamage") then
v:Destroy()
end
end