local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({ Name = "🔐 Key System", HidePremium = false, SaveConfig = true, ConfigFolder = "KeySystem" }) local KeyTab = Window:MakeTab({ Name = "Verification", Icon = "rbxassetid://4483345998", PremiumOnly = false }) -- Get Key Button KeyTab:AddButton({ Name = "📋 Get Key", Callback = function() setclipboard("PlaceHolder") --enter the KeyLink OrionLib:MakeNotification({ Name = "Success!", Content = "Link copied to clipboard!", Image = "rbxassetid://4483345998", Time = 5 }) end }) KeyTab:AddTextbox({ Name = "🔑 Enter Key", Default = "", TextDisappear = true, Callback = function(Value) if Value == "EnterKey" then -- Replace Enter Key With your Key OrionLib:MakeNotification({ Name = "Access Granted!", Content = "Loading script...", Image = "rbxassetid://4483345998", Time = 2 }) wait(1) OrionLib:Destroy() loadstring(game:HttpGet("YOUR_SCRIPT_URL_HERE"))() end end }) KeyTab:AddParagraph("💫 Welcome","Click 'Get Key' to receive your access key!") KeyTab:AddLabel("Status: Waiting for key...") OrionLib:Init()