Caldona

Kill Everyone Booga Booga

Mar 28th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. print("Insta Kill All Players Script Loaded!")
  2. warn("Made by Hamii/Tritium and Floof")
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Mouse = Player:GetMouse()
  5.  
  6. local Damage = function(Part)
  7. local A = Part
  8. local B = Part.Position
  9. local C = {
  10. origin = Player.Character.Head.Position,
  11. position = Part.Position,
  12. velocity = Player.Character.Head.CFrame.lookVector * Vector3.new(500, 100, 500),
  13. acceleration = Vector3.new(0, -156.2, 0),
  14. age = os.time(),
  15. toolFrom = "Magnetite Crossbow",
  16. object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
  17. }
  18. local D = (Player.Character.Head.Position - Part.Position).magnitude
  19. game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D)
  20. end
  21.  
  22.  
  23. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  24. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  25. if v.Character then
  26. local Obj = v.Character.HumanoidRootPart;
  27. for i = 0, 35 do
  28. Damage(Obj)
  29. wait()
  30. end
  31. end
  32. else
  33. print("You tried to kill yourself nubb!! xD")
  34. end
  35. end
Add Comment
Please, Sign In to add comment