if game.PlaceId == 12961669859 then -- Var local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))() local Window = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, SaveConfig = true, IntroEnable = false}) local Player = game.Players.LocalPlayer OrionLib:MakeNotification({ Name = "Logged in !", Content = "You are logged in as"..Player.Name..".", Image = "rbxassetid://4483345998", Time = 5 }) function CorrectKeyNotification() OrionLib:MakeNotification({ Name = "Correct Key !", Content = "You have entered the correct key.", Image = "rbxassetid://4483345998", Time = 5 }) end _G.Key = "rbxfreekey" _G.KeyInput = "string" local Tab = Window:MakeTab({ Name = "Key", Icon = "rbxassetid://4483345998", PremiumOnly = false }) Tab:AddTextbox({ Name = "Enter Key", Default = "", TextDisappear = true, Callback = function(Value) _G.KeyInput = Value end }) Tab:AddButton({ Name = "Check Key", Callback = function() if _G.KeyInput == _G.Key then CorrectKeyNotification() OrionLib:Destroy() wait(2) loadstring(game:HttpGet("https://pastes.io/raw/ka9xnbkz0d"))() end end }) end