Advertisement
Ca11umB

Krnl Hub (Key Required)

Jul 31st, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Player = game.Players.LocalPlayer
  3. local Window = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, SaveConfig = true, IntroEnabled = false})
  4.  
  5. OrionLib:MakeNotification({
  6. Name = "Logged in!",
  7. Content = "You are logged in as ".. Player.Name.." ",
  8. Image = "rbxassetid://4483345998",
  9. Time = 5
  10. })
  11.  
  12. _G.Key = "Louisandbella24"
  13. _G.KeyInput = "string"
  14.  
  15. function MakeScriptHub()
  16. local Window = OrionLib:MakeWindow({Name = "Script Hub", HidePremium = false, SaveConfig = true, IntroEnabled = true, IntroText = "Script Hub"})
  17. end
  18.  
  19. function CorrectKeyNotification()
  20. OrionLib:MakeNotification({
  21. Name = "Correct Key!",
  22. Content = "You have entered the correct key! "
  23. Image = "rbxassetid://4483345998",
  24. Time = 5
  25. })
  26. end
  27.  
  28. function IncorrectKeyNotification()
  29. OrionLib:MakeNotification({
  30. Name = "Incorrect Key!",
  31. Content = "You have entered the Incorrect key! "
  32. Image = "rbxassetid://4483345998",
  33. Time = 5
  34. })
  35. end
  36.  
  37. local Tab = Window:MakeTab({
  38. Name = "Key",
  39. Icon = "rbxassetid://4483345998",
  40. PremiumOnly = false
  41. })
  42.  
  43. Tab:AddTextbox({
  44. Name = "Enter Key",
  45. Default = "Enter Key",
  46. TextDisappear = true,
  47. Callback = function(Value)
  48. _G.KeyInput = Value
  49. end
  50. })
  51.  
  52.  
  53. Tab:AddButton({
  54. Name = "Check Key!",
  55. Callback = function()
  56. if _G.KeyInput == _G.Key then
  57. MakeScriptHub()
  58. function CorrectKeyNotification()
  59. else
  60. IncorrectKeyNotification()
  61. end
  62. end
  63. })
  64.  
  65. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement