Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Alien Facility MJS Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local localroot = character:WaitForChild("HumanoidRootPart")
- local function Closestplayer()
- local range = 99999
- local target = nil
- for _, v in pairs(game.Players:GetPlayers()) do
- if v ~= player and v.Team ~= player.Team and v.Character then
- local JN = v.Character:FindFirstChild("HumanoidRootPart")
- if JN and JN:FindFirstChild("RebelBillBoardGui") then
- local dist = (localroot.Position - JN.Position).magnitude
- if dist < range then
- range = dist
- target = v
- end
- end
- end
- end
- return target
- end
- local function ExecuteKillAura(event)
- local t = Closestplayer()
- if t and t.Character then
- local args = {
- [1] = t.Character
- }
- game:GetService("ReplicatedStorage").Remotes[event]:FireServer(unpack(args))
- end
- end
- -- Tab 1
- local Tab1 = Window:MakeTab({
- Name = "Tab 1",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab1:AddParagraph("Tips", "Always equip a Tool/weapon to make the script work when pressing the Kill Aura buttons.")
- 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")
- Tab1:AddParagraph("Tips", "If the Kill Aura button stops working, try pressing it again or press it rapidly if you're worried about it.")
- 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.")
- Tab1:AddButton({
- Name = "Kill Aura (Human Pistol)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnPistolDamageRE")
- end
- end
- })
- Tab1:AddButton({
- Name = "SafeZone (Teleport Far Away From Map)",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/1Ppc6pdn"))()
- end
- })
- 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.")
- Tab1:AddButton({
- Name = "Kill Aura (Barbell Human)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnBarbellWeaponDamage")
- end
- end
- })
- Tab1:AddButton({
- Name = "Kill Aura (Automatic Rifle Human)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnAutomaticRifleDamageRE")
- end
- end
- })
- Tab1:AddButton({
- Name = "Kill Aura (Sub Machine Gun Human)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnSubmachineGunDamageRE")
- end
- end
- })
- Tab1:AddButton({
- Name = "Kill Aura (Shotgun Human)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnShotgunDamageRE")
- end
- end
- })
- Tab1:AddButton({
- Name = "Kill Aura (Riot Shield Human)",
- Callback = function()
- while wait(0.1) do
- ExecuteKillAura("OnRiotShieldDamage")
- end
- end
- })
- Tab1:AddParagraph("Credit", "Script written and edited by MawinCk. Fixed and handled by ChatGPT, Exploit Developer")
- OrionLib:Init()
Advertisement
Comments
-
- https://www.roblox.com/games/4569972094/Alien-Facility
Add Comment
Please, Sign In to add comment
Advertisement