local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() OrionLib:MakeNotification({ Name = "Universal RNG Fucker Loaded!", Content = "Fuck Byfron!", Image = "rbxassetid://4483345998", Time = 5 }) local Window = OrionLib:MakeWindow({Name = "Universal RNG Aura Equiper", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Tab = Window:MakeTab({ Name = "Credits", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local Section = Tab:AddSection({ Name = "Credits" }) Tab:AddLabel("Made By PROPHECY") Tab:AddLabel("Owned By Axera X") Tab:AddButton({ Name = "Join Axera X", Callback = function() setclipboard("https://discord.gg/axera") end }) local Tab = Window:MakeTab({ Name = "Aura Equiper", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local ReplicatedStorage = game:GetService("ReplicatedStorage") local Auras = ReplicatedStorage:WaitForChild("Auras") local Remotes = ReplicatedStorage:WaitForChild("Remotes") -- Collect aura names from the Auras folder local auraNames = {} for _, aura in pairs(Auras:GetChildren()) do table.insert(auraNames, aura.Name) end -- Add aura names to the dropdown options Tab:AddDropdown({ Name = "Dropdown", Default = "1", Options = auraNames, Callback = function(Value) print(Value) -- Equip the selected aura local args = { [1] = Auras:FindFirstChild(Value) } if args[1] then Remotes:WaitForChild("AuraEquip"):FireServer(unpack(args)) else warn("Selected aura does not exist.") end end }) Tab:AddButton({ Name = "Unequip aura", Callback = function() game:GetService("ReplicatedStorage").Remotes.AuraUnequipAll:FireServer() end }) local Tab = Window:MakeTab({ Name = "Information", Icon = "rbxassetid://4483345998", PremiumOnly = false }) Tab:AddLabel("This wont work with most rng games since this") Tab:AddLabel("took 5 mins to make") Tab:AddLabel("Im not obfuscating a script that took 5 mins to make")