BRUHBRUHLZY

Untitled

Jun 11th, 2023 (edited)
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local UI = Instance.new("Frame")
  3. local Title = Instance.new("TextLabel")
  4. local Frame = Instance.new("Frame")
  5. local Key = Instance.new("TextBox")
  6. local Start = Instance.new("TextButton")
  7.  
  8. ScreenGui.Parent = game.CoreGui
  9. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. UI.Name = "LZY GUI V0.1测试版"
  12. UI.Parent = ScreenGui
  13. UI.Active = true
  14. UI.BackgroundColor3 = Color3.new(0, 0, 0)
  15. UI.BackgroundTransparency = 0
  16. UI.BorderSizePixel = 3
  17. UI.Position = UDim2.new(0.5, -150, 0.5, -67)
  18. UI.Size = UDim2.new(0, 260, 0, 250)
  19. UI.Draggable = true
  20.  
  21. Title.Name = "Title"
  22. Title.Parent = UI
  23. Title.BackgroundColor3 = Color3.new(68, 68, 68)
  24. Title.BackgroundTransparency = 1
  25. Title.BorderSizePixel = 2
  26. Title.Position = UDim2.new(0, 0, 0.02, 0)
  27. Title.Size = UDim2.new(1, 0, 0, 50)
  28. Title.Font = Enum.Font.SourceSans
  29. Title.Text = "密钥系统---LZY"
  30. Title.TextColor3 = Color3.new(0, 0, 255)
  31. Title.TextScaled = true
  32. Title.TextSize = 14
  33. Title.TextWrapped = true
  34.  
  35. Frame.Parent = Title
  36. Frame.BackgroundColor3 = Color3.new(0, 0, 255)
  37. Frame.BorderSizePixel = 0
  38. Frame.Position = UDim2.new(0.07, 0, 0.9, 0)
  39. Frame.Size = UDim2.new(0.85, 0, 0, 6)
  40.  
  41. Key.Name = "Key"
  42. Key.Parent = UI
  43. Key.BackgroundColor3 = Color3.new(1, 1, 1)
  44. Key.BorderSizePixel = 0
  45. Key.Position = UDim2.new(0.1, 0, 0.31, 0)
  46. Key.Size = UDim2.new(0.8, 0, 0, 50)
  47. Key.Font = Enum.Font.SourceSans
  48. Key.PlaceholderText = "检查卡密"
  49. Key.Text = ""
  50. Key.TextColor3 = Color3.new(0, 0, 0)
  51. Key.TextScaled = true
  52. Key.TextSize = 14
  53. Key.TextWrapped = true
  54.  
  55. Start.Name = "Start"
  56. Start.Parent = UI
  57. Start.BackgroundColor3 = Color3.new(0, 0, 255)
  58. Start.BackgroundTransparency = 0
  59. Start.BorderSizePixel = 2
  60. Start.Position = UDim2.new(0.25, 0, 0.65, 0)
  61. Start.Size = UDim2.new(0.5, 0, 0, 45)
  62. Start.Font = Enum.Font.Gotham
  63. Start.Text = "检查卡密"
  64. Start.TextColor3 = Color3.new(0, 0, 0)
  65. Start.TextScaled = true
  66. Start.TextSize = 10
  67. Start.TextWrapped = true
  68.  
  69. Start.MouseButton1Click:Connect(function()
  70. if Key.Text == "LZYCOOL114514HAHA" then
  71. ScreenGui:Destroy()
  72. 这里是你的脚本
  73. else
  74. game.Players.LocalPlayer:Kick("你疯了吗? BRO?")
  75. end
  76. end)
  77.  
  78. local OrionLib = loadstring(game:HttpGet('https://pastebin.com/raw/xLRUSiKx'))()
  79. local Window = OrionLib:MakeWindow({Name = "LZY GUI V0.1 TEST", HidePremium = false, SaveConfig = true,IntroText = "LZY 0.1 GUI", ConfigFolder = "BY LZY"})
  80. local Tab = Window:MakeTab({
  81. Name = "功能分类名",
  82. Icon = "rbxassetid://4483345998",
  83. PremiumOnly = false
  84. })
  85.  
  86. Tab:AddButton({
  87. Name = "功能名",
  88. Callback = function()
  89. 脚本
  90. end
  91. })
  92. Tab:AddButton({
  93. Name = "功能名",
  94. Callback = function()
  95. 脚本
  96. end
  97. })......
  98. local Tab = Window:MakeTab({
  99. Name = "功能分类名",
  100. Icon = "rbxassetid://4483345998",
  101. PremiumOnly = false
  102. })
  103. Tab:AddButton({
  104. Name = "脚本名",
  105. Callback = function()
  106. 脚本
  107. end
  108. })
  109. Tab:AddButton({
  110. Name = "脚本名",
  111. Callback = function()
  112. 脚本
  113. end
  114. })
Advertisement
Add Comment
Please, Sign In to add comment