zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_asylum_v6.lua
2014-10-01 20:49:54 -04:00

9 lines
219 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindInSphere(Vector(968.1165, 953.7861, 16.0313), 100)) do
if ent:GetClass() == "info_player_human" then
ent:Remove()
end
end
end)