After entering the game, just run this script and it will automatically defeat all the zombies for you.
🌟 Features
Auto kill
📋 Script Code
local rm = game:GetService("ReplicatedStorage").Packages._Index["sleitnick_knit@1.6.0"].knit.Services.ExplosionService.RF.GenerateExplosion
while true do
for _, z in pairs(workspace.Zombies:GetChildren()) do
local hrp = z:FindFirstChild("HumanoidRootPart")
if hrp then pcall(function() rm:InvokeServer(hrp.Position, math.huge, 2, "EXPLOSIVE CROSSBOW") end) end
end
task.wait(0.1)
end