local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Mobile%20Friendly%20Orion')))() local Player = game.Players.LocalPlayer local Window = OrionLib:MakeWindow({ Name = "Bxnks Hub BETA", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroText = "Bxnks Hub" }) function MakeScriptHub() loadstring(game:HttpGet("https://raw.githubusercontent.com/SubToNeon/bxnks-hub-by-neoncat/main/beta.lua"))() end OrionLib:MakeNotification({ Name = "Logged In!", Content = "You need key "..Player.Name..".", Image = "rbxassetid://4483345998", Time = 5 }) getgenv().Key = "bxnks1937" getgenv().KeyInput = "string" local Tab = Window:MakeTab({ Name = "Key", Icon = "rbxassetid://4483345998", PremiumOnly = false }) --Making A Tab Tab:AddTextbox({ Name = "Key", Default = "Enter Key.", TextDisappear = true, Callback = function(Value) getgenv().KeyInput = Value end }) Tab:AddButton({ Name = "Check Key", Callback = function() if getgenv().KeyInput == getgenv().Key then OrionLib:MakeNotification({ Name = "Checking Key", Content = "Checking The Key You Entered", Image = "rbxassetid://4483345998", Time = 5 }) wait(2) OrionLib:MakeNotification({ Name = "Correct Key!", Content = "The key you entered is Correct.", Image = "rbxassetid://4483345998", Time = 5 }) wait(1) OrionLib:Destroy() wait(.3) MakeScriptHub() else OrionLib:MakeNotification({ Name = "Checking Key", Content = "Checking The Key You Entered", Image = "rbxassetid://4483345998", Time = 5 }) wait(2) OrionLib:MakeNotification({ Name = "Incorrect Key!", Content = "The key you entered is incorrect.", Image = "rbxassetid://4483345998", Time = 5 }) end end }) Tab:AddButton({ Name = "Copy Key Link", Callback = function() setclipboard("https://social-unlock.com/67Wyo") end }) OrionLib:Init()