Advertisement
SkidScripts

Arsenal Auto Kill

Feb 24th, 2022 (edited)
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. INSTRUCTIONS: Press "E" on your keyboard to kill everybody on other team.
  2.  
  3.  
  4. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  5. if k == "e" then
  6. local Gun = game.ReplicatedStorage.Weapons:FindFirstChild(game.Players.LocalPlayer.NRPBS.EquippedTool.Value);
  7. local Crit = math.random() > .6 and true or false;
  8. for i,v in pairs(game.Players:GetPlayers()) do
  9. if v and v.Character and v.Character:FindFirstChild("Head") then
  10. local Distance = (game.Players.LocalPlayer.Character.Head.Position - v.Character.Head.Position).magnitude
  11. for i  = 1,10 do
  12. game.ReplicatedStorage.Events.HitPart:FireServer(v.Character.Head,
  13. v.Character.Head.Position + Vector3.new(math.random(), math.random(), math.random()),
  14. Gun.Name,
  15. Crit and 2 or 1,
  16. Distance,
  17. Backstab,
  18. Crit,
  19. false,
  20. 1,
  21. false,
  22. Gun.FireRate.Value,
  23. Gun.ReloadTime.Value,
  24. Gun.Ammo.Value,
  25. Gun.StoredAmmo.Value,
  26. Gun.Bullets.Value,
  27. Gun.EquipTime.Value,
  28. Gun.RecoilControl.Value,
  29. Gun.Auto.Value,
  30. Gun['Speed%'].Value,
  31. game.ReplicatedStorage.wkspc.DistributedTime.Value);
  32. end
  33. end
  34. end
  35. end
  36. end)
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement