Advertisement
cortesjoren

Zombie Rush Script fuckererr

Jan 12th, 2019
1,748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. pcall(function()
  2. local Tool = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool")
  3. if not Tool then return end
  4. local GunController = Tool:FindFirstChild("GunController")
  5. if not GunController then return end
  6. if GunController and GunController:FindFirstChild("RemoteFunction") then
  7. for i,v in pairs(game.Workspace[".ZombieStorage"]:GetChildren()) do
  8. if v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  9. local Args = {["Name"] = Tool.Name, ["HumanoidTables"] = {[1] = {["HeadHits"] = 1, ["THumanoid"] = v.Humanoid, ["BodyHits"] = 0}}}
  10. spawn(function()
  11. for Each = 1, 20 do
  12. GunController.RemoteFunction:InvokeServer(Args)
  13. end
  14. end)
  15. end
  16. end
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement