TX_YT1234

arsenal kill all e

Feb 2nd, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. --// source: https://v3rmillion.net/showthread.php?tid=1024102
  2. --// credits: Arsenal Kill All On E by Prestiged.
  3. --// Press E to kill all.
  4.  
  5. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  6. if k == "e" then
  7. local Gun = game.ReplicatedStorage.Weapons:FindFirstChild(game.Players.LocalPlayer.NRPBS.EquippedTool.Value);
  8. local Crit = math.random() > .6 and true or false;
  9. for i,v in pairs(game.Players:GetPlayers()) do
  10. if v and v.Character and v.Character:FindFirstChild("Head") then
  11. local Distance = (game.Players.LocalPlayer.Character.Head.Position - v.Character.Head.Position).magnitude
  12. for i = 1,10 do
  13. game.ReplicatedStorage.Events.HitPart:FireServer(v.Character.Head,
  14. v.Character.Head.Position + Vector3.new(math.random(), math.random(), math.random()),
  15. Gun.Name,
  16. Crit and 2 or 1,
  17. Distance,
  18. Backstab,
  19. Crit,
  20. false,
  21. 1,
  22. false,
  23. Gun.FireRate.Value,
  24. Gun.ReloadTime.Value,
  25. Gun.Ammo.Value,
  26. Gun.StoredAmmo.Value,
  27. Gun.Bullets.Value,
  28. Gun.EquipTime.Value,
  29. Gun.RecoilControl.Value,
  30. Gun.Auto.Value,
  31. Gun['Speed%'].Value,
  32. game.ReplicatedStorage.wkspc.DistributedTime.Value);
  33. end
  34. end
  35. end
  36. end
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment