Advertisement
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 Window = OrionLib:MakeWindow({Name = "Lunar Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "LunarConfig"})
- -- Main Tab
- local MainTab = Window:MakeTab({
- Name = "Key System",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- -- Hidden real key
- local _k = "L"
- local _u = "u"
- local _n = "n"
- local _a = "a"
- local _r = "r"
- local realKey = _k.._u.._n.._a.._r.._n.._a.._r
- MainTab:AddTextbox({
- Name = "Enter Key",
- Default = "",
- TextDisappear = true,
- Callback = function(Value)
- if Value == realKey then
- OrionLib:MakeNotification({
- Name = "Success!",
- Content = "Correct key entered. Loading script...",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- loadstring(game:HttpGet("YOUR_SCRIPT_URL_HERE"))()
- OrionLib:Destroy()
- else
- OrionLib:MakeNotification({
- Name = "Error",
- Content = "Invalid key!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- end
- })
- MainTab:AddButton({
- Name = "Get Key",
- Callback = function()
- setclipboard("https://rekonise.com/key-destination-1-h4vm3")
- OrionLib:MakeNotification({
- Name = "Link Copied!",
- Content = "Key link copied to clipboard",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- MainTab:AddButton({
- Name = "Join Discord",
- Callback = function()
- setclipboard("https://discord.gg/swTAWFRZWr")
- OrionLib:MakeNotification({
- Name = "Discord Copied!",
- Content = "Discord invite copied to clipboard",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- -- Initialize
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement