Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Mobile%20Friendly%20Orion')))() --This Will Load The Script Code
- local Player = game.Players.LocalPlayer --This Will Reveal The Player Name
- local Window = OrionLib:MakeWindow({
- Name = "XyzWare key system"",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "OrionTest",
- IntroText = "Welcome, "..Player.Name..""
- }) --This Will Load The Script Hub
- function MakeScriptHub()
- loadstring(game:HttpGet('https://pastebin.com/8ydvHuwe'))() --Put The Script That Will Load If The Key Is Correct Here
- end
- OrionLib:MakeNotification({
- Name = "Logged In!",
- Content = "You need key "..Player.Name..".",
- Image = "rbxassetid://4483345998",
- Time = 5
- }) --Notification
- getgenv().Key = "ApolloIsPro" --Put The Correct Key Here
- getgenv().KeyInput = "string" --Require For The Key To Work
- 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
- }) --You Will Enter The Key Here
- 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
- }) --This Will Check The Key You Entered
- Tab:AddButton({
- Name = "Copy Key",
- Callback = function()
- setclipboard("https://discord.gg/QsghKXmRFv") --This Will Copy The Link Of The Key
- end
- })
- OrionLib:Init() --Require If The Script Is Done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement