Advertisement
H2KREB0RN

Barhqpai

May 12th, 2024 (edited)
4,528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Mobile%20Friendly%20Orion')))() --This Will Load The Script Code
  2. local Player = game.Players.LocalPlayer --This Will Reveal The Player Name
  3. local Window = OrionLib:MakeWindow({
  4. Name = "H2KReborn Hub",
  5. HidePremium = false,
  6. SaveConfig = true,
  7. ConfigFolder = "OrionTest",
  8. IntroText = "H2KReborn HUB"
  9. }) --This Will Load The Script Hub
  10.  
  11. function MakeScriptHub()
  12.  
  13. loadstring(game:HttpGet("https://pastebin.com/raw/iv6SwBBS"))();
  14.  
  15.  
  16.  
  17. --Put The Script That Will Load If The Key Is Correct Here
  18. end
  19.  
  20. OrionLib:MakeNotification({
  21. Name = "Logged In!",
  22. Content = "You need key "..Player.Name..".",
  23. Image = "rbxassetid://4483345998",
  24. Time = 5
  25. }) --Notification
  26.  
  27. getgenv().Key = "H2KRebornHub" --Put The Correct Key Here
  28. getgenv().KeyInput = "string" --Require For The Key To Work
  29.  
  30. local Tab = Window:MakeTab({
  31. Name = "Key",
  32. Icon = "rbxassetid://4483345998",
  33. PremiumOnly = false
  34. }) --Making A Tab
  35.  
  36. Tab:AddTextbox({
  37. Name = "Key",
  38. Default = "Enter Key.",
  39. TextDisappear = true,
  40. Callback = function(Value)
  41. getgenv().KeyInput = Value
  42. end
  43. }) --You Will Enter The Key Here
  44.  
  45. Tab:AddButton({
  46. Name = "Check Key",
  47. Callback = function()
  48. if getgenv().KeyInput == getgenv().Key then
  49. OrionLib:MakeNotification({
  50. Name = "Checking Key",
  51. Content = "Checking The Key You Entered",
  52. Image = "rbxassetid://4483345998",
  53. Time = 5
  54. })
  55. wait(2)
  56. OrionLib:MakeNotification({
  57. Name = "Correct Key!",
  58. Content = "The key you entered is Correct.",
  59. Image = "rbxassetid://4483345998",
  60. Time = 5
  61. })
  62. wait(1)
  63. OrionLib:Destroy()
  64. wait(.3)
  65. MakeScriptHub()
  66. else
  67. OrionLib:MakeNotification({
  68. Name = "Checking Key",
  69. Content = "Checking The Key You Entered",
  70. Image = "rbxassetid://4483345998",
  71. Time = 5
  72. })
  73. wait(2)
  74. OrionLib:MakeNotification({
  75. Name = "Incorrect Key!",
  76. Content = "The key you entered is incorrect.",
  77. Image = "rbxassetid://4483345998",
  78. Time = 5
  79. })
  80. end
  81. end
  82. }) --This Will Check The Key You Entered
  83.  
  84. Tab:AddButton({
  85. Name = "Copy Key🗝️",
  86. Callback = function()
  87. setclipboard("https://discord.com/invite/2m8Ftm87g5") --This Will Copy The Link Of The Key
  88. end
  89. })
  90.  
  91. OrionLib:Init() --Require If The Script Is Done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement