Advertisement
YoungAoS

VisualiseKeySystem

Jul 9th, 2024 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/aosthedev/nothing/main/OrionMobile.lua.txt')))() --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 = "Visualise",
  5. HidePremium = false,
  6. SaveConfig = true,
  7. IntroEnabled = false,
  8. ConfigFolder = "OrionTest",
  9. IntroText = ""
  10. }) --This Will Load The Script Hub
  11.  
  12. function MakeScriptHub()
  13. loadstring(game:HttpGet('https://pastebin.com/raw/S0jueseT'))() --Put The Script That Will Load If The Key Is Correct Here
  14. end
  15.  
  16. getgenv().Key = "IUseVisualiseFree" --Put The Correct Key Here
  17. getgenv().KeyInput = "string" --Require For The Key To Work
  18.  
  19. local Tab = Window:MakeTab({
  20. Name = "Key System",
  21. Icon = "",
  22. PremiumOnly = false
  23. }) --Making A Tab
  24.  
  25. Tab:AddTextbox({
  26. Name = "Key",
  27. Default = "",
  28. TextDisappear = true,
  29. Callback = function(Value)
  30. getgenv().KeyInput = Value
  31. end
  32. }) --You Will Enter The Key Here
  33.  
  34. Tab:AddButton({
  35. Name = "Check Key",
  36. Callback = function()
  37. if getgenv().KeyInput == getgenv().Key then
  38. OrionLib:MakeNotification({
  39. Name = "checking key",
  40. Content = "checking the key entered",
  41. Image = "rbxassetid://17440545793",
  42. Time = 5
  43. })
  44. wait(2)
  45. OrionLib:MakeNotification({
  46. Name = "correct key",
  47. Content = "loading the launcher",
  48. Image = "rbxassetid://17440545793",
  49. Time = 5
  50. })
  51. wait(1)
  52. OrionLib:Destroy()
  53. wait(.3)
  54. MakeScriptHub()
  55. else
  56. OrionLib:MakeNotification({
  57. Name = "checking key",
  58. Content = "checking key",
  59. Image = "rbxassetid://17440545793",
  60. Time = 5
  61. })
  62. wait(2)
  63. OrionLib:MakeNotification({
  64. Name = "incorrect key",
  65. Content = "the key is incorrect",
  66. Image = "rbxassetid://17440545793",
  67. Time = 5
  68. })
  69. end
  70. end
  71. }) --This Will Check The Key You Entered
  72.  
  73. Tab:AddButton({
  74. Name = "Get Key",
  75. Callback = function()
  76. setclipboard("https://discord.com/invite/m743qGbK9K") --This Will Copy The Link Of The Key
  77. end
  78. })
  79.  
  80. OrionLib:Init() --Require If The Script Is Done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement