NKSz

BOOGA BOOGA INSTA DESTROY SCRIPT

Mar 27th, 2018
2,767
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. -- Credits to Hamii/Tritium and Floof
  3. -- PasteBin By NKSzYT
  4.  
  5. print("Insta Destroy Script loaded! Press q where your mouse is to use it!")
  6. warn("Made by Hamii/Tritium and Floof")
  7. local Player = game:GetService("Players").LocalPlayer
  8. local Mouse = Player:GetMouse()
  9.  
  10. local Damage = function(Part)
  11. local A = Part
  12. local B = Part.Position
  13. local C = {
  14. origin = Player.Character.Head.Position,
  15. position = Part.Position,
  16. velocity = Player.Character.Head.CFrame.lookVector * math.clamp(500, 100, 500),
  17. acceleration = Vector3.new(0, -156.2, 0),
  18. age = os.time(),
  19. toolFrom = "Magnetite Crossbow",
  20. object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
  21. }
  22. local D = (Player.Character.Head.Position - Part.Position).magnitude
  23. game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D)
  24. end
  25.  
  26. Mouse.KeyUp:connect(function(key)
  27. if key == "q" then
  28. for i = 1, 20 do
  29. if Mouse.Target and Mouse.Target.ClassName ~= "Terrain" then
  30. Damage(Mouse.Target)
  31. end
  32. end
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment