Advertisement
Guest User

kill aura

a guest
Dec 23rd, 2022
7,680
-2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.61 KB | None | 0 2
  1. local Aura_Range = 200 -- Edit here
  2. local AmountOfDamage = 20 -- Edit here for insta destroy
  3.  
  4. --[[ Keybind Settings --]]
  5. --[[
  6. Q - Insta Destroy
  7. E - Level Farm
  8. V - Kill Aura
  9. roblox kill aura script pastebin roblox kill aura script pastebin
  10. --]]
  11.  
  12. warn("Made by Hamii (Hamii#4518) / Tritium (on v3rm), thanks for kill aura helping Floof!")
  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. roblox kill aura script pastebin roblox kill aura script pastebin
  21. local A = Part
  22. local B = Part.Position
  23. local C = {
  24. owned = true,
  25. origin = Player.Character.Head.Position,
  26. position = Part.Position,
  27. velocity = Player.Character.Head.CFrame.lookVector * Vector3.new(500, 100, 500),
  28. acceleration = Vector3.new(0, -156.2, 0),
  29. age = os.time(),
  30. toolFrom = "Magnetite Crossbow",
  31. roblox kill aura script pastebin roblox kill aura script pastebin
  32. object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
  33. }
  34. local D = (Player.Character.Head.Position - Part.Position).magnitude
  35. game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D)
  36. end)
  37. end
  38.  
  39. Mouse.KeyUp:connect(function(key)
  40. if key == "q" then
  41. for i = 1, AmountOfDamage do
  42. roblox kill aura script pastebin roblox kill aura script pastebin
  43. if Mouse.Target and Mouse.Target.ClassName ~= "Terrain" then
  44. Damage(Mouse.Target)
  45. end
  46. end
  47. end
  48. end)
  49.  
  50. Mouse.KeyUp:connect(function(key)
  51. if key == "e" then
  52. while wait() do
  53. roblox kill aura script pastebin roblox kill aura script pastebin
  54. for i,v in pairs(workspace:GetChildren()) do
  55. if string.find(v.Name:lower(), "bush") or string.find(v.Name:lower(), "tree") or string.find(v.Name:lower(), "ice") or string.find(v.Name:lower(), "rock") then
  56. for i,v in pairs(v:GetChildren()) do
  57. if v.ClassName == "Part" or v.ClassName == "Union" then
  58. spawn(function()
  59. for i = 1, 50 do
  60. Damage(v)
  61. wait()
  62. end
  63. end)
  64. roblox kill aura script pastebin roblox kill aura script pastebin
  65. end
  66. end
  67. elseif v:findFirstChild("PrimaryPart") then
  68. spawn(function()
  69. for i = 1, 50 do
  70. Damage(v.PrimaryPart)
  71. wait()
  72. end
  73. end)
  74. elseif game:GetService("Players"):GetPlayerFromCharacter(v) then
  75. roblox kill aura script pastebin roblox kill aura script pastebin
  76. spawn(function()
  77. for i = 1, 50 do
  78. Damage(v.Head)
  79. wait()
  80. end
  81. end)
  82. end
  83. end
  84. end
  85. end
  86. roblox kill aura script pastebin roblox kill aura script pastebin
  87. end)
  88.  
  89. local orange = function(part, strength)
  90. if part:IsDescendantOf(Player.Character) then return nil end
  91. if part and part.Parent and part.Parent.Parent then
  92. if part.Parent:findFirstChild("Head") then
  93. for i = 1, 5 * strength do
  94. Damage(part.Parent.Head)
  95. end
  96. elseif part.Parent.Parent:findFirstChild("Head") then
  97. roblox kill aura script pastebin roblox kill aura script pastebin
  98. for i = 1, 5 * strength do
  99. Damage(part.Parent.Parent.Head)
  100. end
  101. else
  102. if part.Parent ~= workspace then
  103. for i,v in pairs(part.Parent:GetChildren()) do
  104. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  105. for i = 1, 2.5 * strength do
  106. Damage(v)
  107. end
  108. roblox kill aura script pastebin roblox kill aura script pastebin
  109. end
  110. end
  111. end
  112. end
  113. for i = 1, 2.5 * strength do
  114. Damage(part)
  115. end
  116. end
  117. end
  118.  
  119. roblox kill aura script pastebin roblox kill aura script pastebin
  120. local myPos = function()
  121. return Player.Character.HumanoidRootPart.Position
  122. end
  123.  
  124. Mouse.KeyDown:connect(function(key)
  125. if key == "v" then
  126. --warn("Pressed v, Kill Aura made by Floof and bypassed by Hamii!")
  127. for i, v in pairs(workspace.Critters:GetChildren()) do
  128. if v:findFirstChild("HumanoidRootPart") then
  129. local Pos = v.HumanoidRootPart.Position
  130. roblox kill aura script pastebin roblox kill aura script pastebin
  131. local Distance = (Pos - myPos()).magnitude
  132. if Distance <= Aura_Range then
  133. orange(v.HumanoidRootPart, 8)
  134. end
  135. elseif v:findFirstChild("Torso") then
  136. local Pos = v.Torso.Position
  137. local Distance = (Pos - myPos()).magnitude
  138. if Distance <= Aura_Range then
  139. orange(v.Torso, 8)
  140. end
  141. roblox kill aura script pastebin roblox kill aura script pastebin
  142. else
  143. local Part = nil
  144. for i,v in pairs(v:GetChildren()) do
  145. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  146. Part = v
  147. end
  148. end
  149. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  150. Part = v
  151. end
  152. roblox kill aura script pastebin roblox kill aura script pastebin
  153. if Part then
  154. orange(Part, 14)
  155. end
  156. end
  157. end
  158. wait()
  159. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  160. if v ~= Player and v.Character then
  161. local HRP = v.Character:findFirstChild("HumanoidRootPart")
  162. if HRP then
  163. roblox kill aura script pastebin roblox kill aura script pastebin
  164. local Distance = (HRP.Position - myPos()).magnitude
  165. if Distance <= Aura_Range then
  166. orange(HRP, 15)
  167. end
  168. end
  169. end
  170. end
  171. wait()
  172. for i,v in pairs(workspace:GetChildren()) do
  173. if string.find(v.Name:lower(), "bush") or string.find(v.Name:lower(), "ice") or string.find(v.Name:lower(), "tree") or string.find(v.Name:lower(), "node") or string.find(v.Name:lower(), "wall") or string.find(v.Name:lower(), "stone") or string.find(v.Name:lower(), "mound") or string.find(v.Name:lower(), "rope") or v:findFirstChild("PrimaryPart") or v:findFirstChild("Health") or v:findFirstChild("Torso") or v:findFirstChild("HitShell") then
  174. roblox kill aura script pastebin roblox kill aura script pastebin
  175. local Part = nil
  176. for i,v in pairs(v:GetChildren()) do
  177. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  178. Part = v
  179. end
  180. end
  181. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  182. Part = v
  183. end
  184. if Part then
  185. roblox kill aura script pastebin roblox kill aura script pastebin
  186. local Distance = (Part.Position - myPos()).magnitude
  187. if Distance <= Aura_Range then
  188. orange(Part, 7)
  189. end
  190. end
  191. end
  192. end
  193. for i,v in pairs(workspace.Deployables:GetChildren()) do
  194. if string.find(v.Name:lower(), "wall") or string.find(v.Name:lower(), "gate") or string.find(v.Name:lower(), "raft") or string.find(v.Name:lower(), "boat") or string.find(v.Name:lower(), "hut") or string.find(v.Name:lower(), "Health") or v:findFirstChild("PrimaryPart") or v:findFirstChild("Torso") then
  195. local Part = nil
  196. roblox kill aura script pastebin roblox kill aura script pastebin
  197. for i,v in pairs(v:GetChildren()) do
  198. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  199. Part = v
  200. end
  201. end
  202. if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
  203. Part = v
  204. end
  205. if Part then
  206. local Distance = (Part.Position - myPos()).magnitude
  207. roblox kill aura script pastebin roblox kill aura script pastebin
  208. if Distance <= Aura_Range then
  209. orange(Part, 7)
  210. end
  211. end
  212. end
  213. end
  214. end
  215. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement