Advertisement
Idkrandomthingyyyy

yes

Jun 23rd, 2023 (edited)
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. local Tab = Window:MakeTab({
  2. Name = "TOS",
  3. Icon = "rbxassetid://4483345998",
  4. PremiumOnly = false
  5. })
  6.  
  7. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  8. local Player = game.Players.LocalPlayer
  9.  
  10. wait (1)
  11. local Window = OrionLib:MakeWindow({Name = "Traykend Key System", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroEnabled = true, IntroText = "Key System"})
  12.  
  13. -- KEY --
  14.  
  15. OrionLib:MakeNotification({
  16. Name = "Logged in",
  17. Content = "You are logged in as"..Player.Name.." ",
  18. Image = "rbxassetid://4483345998",
  19. Time = 5
  20. })
  21.  
  22. _G.Key = "skid"
  23. _G.KeyInput = "string"
  24.  
  25.  
  26.  
  27.  
  28.  
  29. function MakeScriptHub()
  30. loadstring(game:HttpGet(('https://pastebin.com/raw/EEx1YQ4L'),true))()
  31.  
  32. end
  33.  
  34.  
  35.  
  36. function CorrectKeyNotification()
  37. OrionLib:MakeNotification({
  38. Name = "Correct Key!",
  39. Content = "You have entered the correct key!",
  40. Imagine = "rbxassetid://4483345998",
  41. Time = 5
  42. })
  43. end
  44.  
  45. function IncorrectKeyNotification()
  46. loadstring(game:HttpGet(('https://pastebin.com/raw/6QKYyRpJ'),true))()
  47. end
  48.  
  49.  
  50. local Tab = Window:MakeTab({
  51. Name = "Key",
  52. Icon = "rbxassetid://13065334180",
  53. PremiumOnly = false
  54. })
  55.  
  56. Tab:AddTextbox({
  57. Name = "Enter key",
  58. Default = "",
  59. TextDisappear = true,
  60. Callback = function(Value)
  61. _G.KeyInput = Value
  62. end
  63. })
  64.  
  65. Tab:AddButton({
  66. Name = "Check Key",
  67. Callback = function()
  68. if _G.KeyInput == _G.Key then
  69. wait(1)
  70. CorrectKeyNotification()
  71. MakeScriptHub()
  72. else
  73. IncorrectKeyNotification()
  74. end
  75. end
  76. })
  77.  
  78. local Tab = Window:MakeTab({
  79. Name = "",
  80. Icon = "rbxassetid://13065334180",
  81. PremiumOnly = false
  82. })
  83.  
  84.  
  85.  
  86. Tab:AddBind({
  87. Name = "Notification",
  88. Default = Enum.KeyCode.Return,
  89. Hold = false,
  90. Callback = function()
  91. OrionLib:MakeNotification({
  92. Name = "IMPORTANT!",
  93. Content = "Dont press enter to inject your key press the |Check Key| button!",
  94. Image = "rbxassetid://4483345998",
  95. Time = 5
  96. })
  97. end
  98. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement