View difference between Paste ID: 3mS0G0Ea and sjp0xEmu
SHOW: | | - or go back to the newest paste.
1
setsimulationradius(math.huge,math.huge)
2
 
3
while wait() do
4
    for i,v in pairs(game:GetService("Workspace").enemies:GetChildren()) do
5
        if v:FindFirstChild("Humanoid") then
6
            v.Humanoid.Health = 0
7
        end
8
    end
9
end