Advertisement
SigmaBoy456

Roblox Alien Facility Auto Kill all Script

Aug 17th, 2024 (edited)
4,471
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Alien Facility MJS Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. local player = game.Players.LocalPlayer
  5. local character = player.Character or player.CharacterAdded:Wait()
  6. local localroot = character:WaitForChild("HumanoidRootPart")
  7.  
  8. local function Closestplayer()
  9. local range = 99999
  10. local target = nil
  11. for _, v in pairs(game.Players:GetPlayers()) do
  12. if v ~= player and v.Team ~= player.Team and v.Character then
  13. local JN = v.Character:FindFirstChild("HumanoidRootPart")
  14. if JN and JN:FindFirstChild("RebelBillBoardGui") then
  15. local dist = (localroot.Position - JN.Position).magnitude
  16. if dist < range then
  17. range = dist
  18. target = v
  19. end
  20. end
  21. end
  22. end
  23. return target
  24. end
  25.  
  26. local function ExecuteKillAura(event)
  27. local t = Closestplayer()
  28. if t and t.Character then
  29. local args = {
  30. [1] = t.Character
  31. }
  32. game:GetService("ReplicatedStorage").Remotes[event]:FireServer(unpack(args))
  33. end
  34. end
  35.  
  36. -- Tab 1
  37. local Tab1 = Window:MakeTab({
  38. Name = "Tab 1",
  39. Icon = "rbxassetid://4483345998",
  40. PremiumOnly = false
  41. })
  42.  
  43. Tab1:AddParagraph("Tips", "Always equip a Tool/weapon to make the script work when pressing the Kill Aura buttons.")
  44. Tab1:AddParagraph("Warning and Reminder", "This script does not instantly kill players due to cooldowns, but it Still can kill enemies rapidly. also This script Only Kill an enemies Team That Has PvP mode turn on or called Rebel enemy")
  45. Tab1:AddParagraph("Tips", "If the Kill Aura button stops working, try pressing it again or press it rapidly if you're worried about it.")
  46. Tab1:AddParagraph("Tips", "All scripts only work on the Human team because it's the only team with better remote events. The Alien team doesn't have these. WARNING: Don't ever die or get killed by an alien while on the Human team, or you'll waste time waiting to respawn as a Human.")
  47.  
  48. Tab1:AddButton({
  49. Name = "Kill Aura (Human Pistol)",
  50. Callback = function()
  51. while wait(0.1) do
  52. ExecuteKillAura("OnPistolDamageRE")
  53. end
  54. end
  55. })
  56.  
  57. Tab1:AddButton({
  58. Name = "SafeZone (Teleport Far Away From Map)",
  59. Callback = function()
  60. loadstring(game:HttpGet("https://pastebin.com/raw/1Ppc6pdn"))()
  61. end
  62. })
  63.  
  64. Tab1:AddParagraph("Tips", "When you create your BasePlate SafeZone, it's recommended to do it a lot because nobody can attack you. This way, you can auto-farm kills safely and watch other players die.")
  65.  
  66. Tab1:AddButton({
  67. Name = "Kill Aura (Barbell Human)",
  68. Callback = function()
  69. while wait(0.1) do
  70. ExecuteKillAura("OnBarbellWeaponDamage")
  71. end
  72. end
  73. })
  74.  
  75. Tab1:AddButton({
  76. Name = "Kill Aura (Automatic Rifle Human)",
  77. Callback = function()
  78. while wait(0.1) do
  79. ExecuteKillAura("OnAutomaticRifleDamageRE")
  80. end
  81. end
  82. })
  83.  
  84. Tab1:AddButton({
  85. Name = "Kill Aura (Sub Machine Gun Human)",
  86. Callback = function()
  87. while wait(0.1) do
  88. ExecuteKillAura("OnSubmachineGunDamageRE")
  89. end
  90. end
  91. })
  92.  
  93. Tab1:AddButton({
  94. Name = "Kill Aura (Shotgun Human)",
  95. Callback = function()
  96. while wait(0.1) do
  97. ExecuteKillAura("OnShotgunDamageRE")
  98. end
  99. end
  100. })
  101.  
  102. Tab1:AddButton({
  103. Name = "Kill Aura (Riot Shield Human)",
  104. Callback = function()
  105. while wait(0.1) do
  106. ExecuteKillAura("OnRiotShieldDamage")
  107. end
  108. end
  109. })
  110.  
  111. Tab1:AddParagraph("Credit", "Script written and edited by MawinCk. Fixed and handled by ChatGPT, Exploit Developer")
  112.  
  113. OrionLib:Init()
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement