LazerBloxx

Untitled

Jul 14th, 2023
1,131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.53 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 = "yuh"
  13.  
  14. function CorrectKeyNotification()
  15.   OrionLib:MakeNotification({
  16.     Name = "Correct Key!",
  17.     Content = "You have entered the correct key",
  18.     Image = "rbxassetid://12738913447",
  19.     Time = 5
  20. })
  21. end
  22.  
  23. function IncorrectKeyNotification()
  24.   OrionLib:MakeNotification({
  25.     Name = "Incorrect Key!",
  26.     Content = "You have entered the incorrect key",
  27.     Image = "rbxassetid://12738913447",
  28.     Time = 5
  29. })
  30. end
  31.  
  32. function MakeScriptHub()
  33.   loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  34. end
  35.  
  36. function DestroyUI()
  37.   OrionLib:Destroy()
  38. end
  39.  
  40. local Tab = Window:MakeTab({
  41.     Name = "Key",
  42.     Icon = "rbxassetid://11330899276",
  43.     PremiumOnly = false
  44. })
  45.  
  46. Tab:AddTextbox({
  47.     Name = "Enter Key",
  48.     Default = "Enter Key",
  49.     TextDisappear = false,
  50.     Callback = function(Value)
  51.       local key = Value
  52.     end  
  53. })
  54.  
  55. Tab:AddButton({
  56.     Name = "Check Key!",
  57.     Callback = function()
  58.         if tostring(key) == "yuh"
  59.         print("random sht has executed")
  60.         else
  61.           print("wrong key bozo ass kid")
  62.           end
  63.     end    
  64. })
  65.  
  66. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment