LazerBloxx

pls help

Jul 11th, 2023
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 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 = "Lynch Syndicate", HidePremium = false, SaveConfig = false})
  4.  
  5. OrionLib:MakeNotification({
  6. Name = "Logged in!",
  7. Content = "You are logged in as "..Player.Name..".",
  8. Image = "rbxassetid://12738913447",
  9. Time = 5
  10. })
  11.  
  12. local key = loadstring(game:HttpGet("https://pastebin.com/raw/ayceZnw0"))()
  13. _G.KeyInput = "string"
  14.  
  15. function CorrectKeyNotification()
  16. OrionLib:MakeNotification({
  17. Name = "Correct Key!",
  18. Content = "You have entered the correct key",
  19. Image = "rbxassetid://12738913447",
  20. Time = 5
  21. })
  22. end
  23.  
  24. function IncorrectKeyNotification()
  25. OrionLib:MakeNotification({
  26. Name = "Incorrect Key!",
  27. Content = "You have entered the incorrect key",
  28. Image = "rbxassetid://12738913447",
  29. Time = 5
  30. })
  31. end
  32.  
  33. function MakeScriptHub()
  34. ok
  35. end
  36.  
  37. function DestroyUI()
  38. OrionLib:Destroy()
  39. end
  40.  
  41. local Tab = Window:MakeTab({
  42. Name = "Key",
  43. Icon = "rbxassetid://14015790377",
  44. PremiumOnly = false
  45. })
  46.  
  47. Tab:AddTextbox({
  48. Name = "Enter Key",
  49. Default = "Enter Key",
  50. TextDisappear = false,
  51. Callback = function(Value)
  52. _G.KeyInput = Value
  53. end
  54. })
  55.  
  56. Tab:AddButton({
  57. Name = "Check Key!",
  58. Callback = function()
  59. if key == "loadstring(game:HttpGet("https://pastebin.com/raw/ayceZnw0"))()" then
  60. DestroyUI()
  61. MakeScriptHub()
  62. CorrectKeyNotification()
  63. else
  64. IncorrectKeyNotification()
  65. end
  66. end
  67. })
  68.  
  69. Tab:AddParagraph("Paragraph","You are logged in as "..Player.Name..".")
  70.  
  71. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment