Advertisement
hacimiks

VALIANT ( KEY SYSTEM )

Apr 9th, 2024 (edited)
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.60 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))() --This Will Load The Script Code
  2. local Window = Library.CreateLib("KAVO KEY SYSTEM ", "DarkTheme") --This Will Make The Script Hub
  3.  
  4. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  5.  
  6. local Player = game.Players.LocalPlayer
  7.  
  8. function CorrectKeyAndLoadTheScript()
  9.          loadstring(game:HttpGet('https://pastebin.com/raw/tcqTEG6Y'))() --Your Script
  10.     end
  11.  
  12. OrionLib:MakeNotification({
  13.     Name = "Logged In",
  14.     Content = "You need key "..Player.Name..".",
  15.     Image = "rbxassetid://4483345998",
  16.     Time = 5
  17. }) --Notification
  18.  
  19. getgenv().Key = "aokitest" --Put The Correct Key Here
  20. getgenv().KeyInput = "string" --KeyInput Require To Make The Key Work
  21.  
  22. local Tab = Window:NewTab("MAIN") --This Will Make A Tab
  23.  
  24. local Section = Tab:NewSection("Key System by aoki0x") --This Will Make A Section
  25.  
  26. Section:NewTextBox("Enter Key", "Key", function(Value)
  27.         getgenv().KeyInput = Value
  28. end)
  29.  
  30. Section:NewButton("Check Key", "Key Checker", function()
  31.             if getgenv().KeyInput == getgenv().Key then
  32.             OrionLib:MakeNotification({
  33.                 Name = "Checking Key",
  34.                 Content = "Checking The Key You Entered",
  35.                 Image = "rbxassetid://4483345998",
  36.                 Time = 5
  37.             })
  38.             wait(2)
  39.             OrionLib:MakeNotification({
  40.                 Name = "Correct Key",
  41.                 Content = "The key you entered is Valid.",
  42.                 Image = "rbxassetid://4483345998",
  43.                 Time = 5
  44.             })
  45.             wait(.3)
  46.             CorrectKeyAndLoadTheScript()
  47.         else
  48.            OrionLib:MakeNotification({
  49.                 Name = "Checking Key",
  50.                 Content = "Checking The Key You Entered",
  51.                 Image = "rbxassetid://4483345998",
  52.                 Time = 5
  53.             })
  54.             wait(2)
  55.             OrionLib:MakeNotification({
  56.                 Name = "Incorrect Key",
  57.                 Content = "The key you entered is Invalid.",
  58.                 Image = "rbxassetid://4483345998",
  59.                 Time = 5
  60.             })
  61.         end
  62. end)  
  63.  
  64. local Section2 = Tab:NewSection("Link For Key")
  65. Section2:NewButton("Copy Link", "ButtonInfo", function()
  66.                 setclipboard("Link here") --Put The Link Here
  67.           OrionLib:MakeNotification({
  68.                 Name = "Copied Link!",
  69.                 Content = "Success Copied Link.",
  70.                 Image = "rbxassetid://4483345998",
  71.                 Time = 5
  72.             })
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement