Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Player = game.Players.LocalPlayer
- local Window = OrionLib:MakeWindow({Name = "Lynch Syndicate", HidePremium = false, SaveConfig = false})
- OrionLib:MakeNotification({
- Name = "Logged in!",
- Content = "You are logged in as "..Player.Name..".",
- Image = "rbxassetid://12738913447",
- Time = 5
- })
- local key = loadstring(game:HttpGet("https://pastebin.com/raw/ayceZnw0"))()
- _G.KeyInput = "string"
- function CorrectKeyNotification()
- OrionLib:MakeNotification({
- Name = "Correct Key!",
- Content = "You have entered the correct key",
- Image = "rbxassetid://12738913447",
- Time = 5
- })
- end
- function IncorrectKeyNotification()
- OrionLib:MakeNotification({
- Name = "Incorrect Key!",
- Content = "You have entered the incorrect key",
- Image = "rbxassetid://12738913447",
- Time = 5
- })
- end
- function MakeScriptHub()
- ok
- end
- function DestroyUI()
- OrionLib:Destroy()
- end
- local Tab = Window:MakeTab({
- Name = "Key",
- Icon = "rbxassetid://14015790377",
- PremiumOnly = false
- })
- Tab:AddTextbox({
- Name = "Enter Key",
- Default = "Enter Key",
- TextDisappear = false,
- Callback = function(Value)
- _G.KeyInput = Value
- end
- })
- Tab:AddButton({
- Name = "Check Key!",
- Callback = function()
- if key == "loadstring(game:HttpGet("https://pastebin.com/raw/ayceZnw0"))()" then
- DestroyUI()
- MakeScriptHub()
- CorrectKeyNotification()
- else
- IncorrectKeyNotification()
- end
- end
- })
- Tab:AddParagraph("Paragraph","You are logged in as "..Player.Name..".")
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment