local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, IntroText = "Key System", SaveConfig = true, ConfigFolder = "OrionTest"}) local Player = game.Players.LocalPlayer OrionLib:MakeNotification({ Name = "Logged in!", Content = "You are logged in as: "..Player.Name..".", Image = "rbxassetid://4483345998", Time = 5 }) _G.Key = "ExploitHubKey" _G.KeyInput = "string" function MakeScriptHub() loadstring(game:HttpGet("https://pastebin.com/raw/v2vZ3yCn"))() end local KeyTab = Window:MakeTab({ Name = "Key", Icon = "rbxassetid://4483345998", PremiumOnly = false }) KeyTab:AddTextbox({ Name = "Enter Key", Default = "", TextDisappear = false, Callback = function(Value) _G.KeyInput = Value end }) KeyTab:AddButton({ Name = "Check Key", Callback = function() if _G.KeyInput == _G.Key then MakeScriptHub() end end })