Advertisement
SigmaBoy456

roblox Elite Zombie Lab Script

Sep 23rd, 2024
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character
  3. local tool = character:FindFirstChildOfClass("Tool")
  4. local back = player.Backpack:FindFirstChildOfClass("Tool")
  5.  
  6. while wait(0.1) do
  7. if tool then
  8. for _, v in pairs(game.Players:GetPlayers()) do
  9. if v ~= player and v.Team ~= player.Team and v.Character then
  10. local h = v.Character:FindFirstChildOfClass("Humanoid")
  11. local r = v.Character:FindFirstChild("UpperTorso")
  12. if h and r then
  13. local args = {
  14. [1] = h,
  15. [2] = r,
  16. [3] = 100,
  17. [4] = Vector3.new(0, 0, 0),
  18. [5] = 0,
  19. [6] = 0,
  20. [7] = false
  21. }
  22. tool.GunScript_Server.InflictTarget:FireServer(unpack(args))
  23. end
  24. end
  25. end
  26. end
  27. end
  28.  
  29. spawn(function()
  30. while wait(0.1) do
  31. if back then
  32. for _, v in pairs(game.Players:GetPlayers()) do
  33. if v ~= player and v.Team ~= player.Team and v.Character then
  34. local j = v.Character:FindFirstChildOfClass("Humanoid")
  35. local y = v.Character:FindFirstChild("HumanoidRootPart")
  36. if j and y then
  37. local args = {
  38. [1] = j,
  39. [2] = y,
  40. [3] = 100,
  41. [4] = Vector3.new(0, 0, 0),
  42. [5] = 0,
  43. [6] = 0,
  44. [7] = false
  45. }
  46. back.GunScript_Server.InflictTarget:FireServer(unpack(args))
  47. end
  48. end
  49. end
  50. end
  51. end
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement