Advertisement
Smartdumgood

Key system Tutorial

Jan 10th, 2025 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({
  4. Name = "🔐 Key System",
  5. HidePremium = false,
  6. SaveConfig = true,
  7. ConfigFolder = "KeySystem"
  8. })
  9.  
  10. local KeyTab = Window:MakeTab({
  11. Name = "Verification",
  12. Icon = "rbxassetid://4483345998",
  13. PremiumOnly = false
  14. })
  15.  
  16. -- Get Key Button
  17. KeyTab:AddButton({
  18. Name = "📋 Get Key",
  19. Callback = function()
  20. setclipboard("PlaceHolder") --enter the KeyLink
  21. OrionLib:MakeNotification({
  22. Name = "Success!",
  23. Content = "Link copied to clipboard!",
  24. Image = "rbxassetid://4483345998",
  25. Time = 5
  26. })
  27. end
  28. })
  29.  
  30. KeyTab:AddTextbox({
  31. Name = "🔑 Enter Key",
  32. Default = "",
  33. TextDisappear = true,
  34. Callback = function(Value)
  35. if Value == "EnterKey" then -- Replace Enter Key With your Key
  36. OrionLib:MakeNotification({
  37. Name = "Access Granted!",
  38. Content = "Loading script...",
  39. Image = "rbxassetid://4483345998",
  40. Time = 2
  41. })
  42. wait(1)
  43. OrionLib:Destroy()
  44. loadstring(game:HttpGet("YOUR_SCRIPT_URL_HERE"))()
  45. end
  46. end
  47. })
  48.  
  49. KeyTab:AddParagraph("💫 Welcome","Click 'Get Key' to receive your access key!")
  50.  
  51. KeyTab:AddLabel("Status: Waiting for key...")
  52.  
  53. OrionLib:Init()
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement