Roblox Dungeon Quest Kill All Screeps Script
January 31, 2021
Roblox Dungeon Quest Kill All Screeps Script

Script by HTDBarsii
setsimulationradius(math.huge,math.huge)
while wait() do
for i,v in pairs(game.Workspace:GetDescendants()) do
if v:IsA("Humanoid") and v.Parent.Name ~= game.Players.LocalPlayer.Name then
v.Health = 0
end
end
end