Advertisement
DontDoItIDareU

Booga Booga Insta kill (PATCHED SORRY)

May 25th, 2018
1,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. --[[ Some Settings --]]
  2. local Aura_Range = 200 -- Edit here
  3. local AmountOfDamage = 12 -- Edit here for insta destroy(I RECOMMEND DONT GO ABOVE 12! DO IT AT YOUR OWN RISK!
  4.  
  5. --[[ Keybind Settings --]]
  6. --[[
  7. Q - Insta Destroy
  8. E - Level Farm
  9. V - Kill Aura
  10. --]]
  11.  
  12. warn("Bypassed again by Hamii")
  13.  
  14. local Player = game:GetService("Players").LocalPlayer
  15. local Mouse = Player:GetMouse()
  16. local Folder = workspace.Critters
  17.  
  18. local Damage = function(Part)
  19. pcall(function()
  20. local A = Part
  21. local B = Part.Position
  22. local C = {
  23. owned = true,
  24. origin = Player.Character.Head.Position,
  25. position = Part.Position,
  26. velocity = Player.Character.Head.CFrame.lookVector * Vector3.new(500, 100, 500),
  27. acceleration = Vector3.new(0, -156.2, 0),
  28. age = os.time(),
  29. toolFrom = "Magnetite Crossbow",
  30. object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
  31. }
  32. local D = (Player.Character.Head.Position - Part.Position).magnitude
  33. game:GetService("ReplicatedStorage").Events.DequipCosmetic:FireServer(A, B, C, D)
  34. end)
  35. end
  36.  
  37. Mouse.KeyUp:connect(function(key)
  38. if key == "q" then
  39. --warn("Pressed q, Insta Destroy made by Hamii/Tritium and Floof")
  40. for i = 1, AmountOfDamage do
  41. if Mouse.Target and Mouse.Target.ClassName ~= "Terrain" then
  42. Damage(Mouse.Target)
  43. end
  44. end
  45. end
  46. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement