Advertisement
AceW0lf_BOt

Script

Oct 18th, 2022 (edited)
1,343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.11 KB | Gaming | 0 0
  1. --// Varibles
  2.  
  3. local StarterGui = game:GetService("StarterGui")
  4. local KeySystem = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Key = Instance.new("TextBox")
  8. local Open = Instance.new("TextButton")
  9. local GetKey = Instance.new("TextButton")
  10.  
  11. --// Properties & Scripts
  12.  
  13. KeySystem.Name = "Key-System"
  14. KeySystem.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. KeySystem.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = KeySystem
  18. Frame.BackgroundColor3 = Color3.fromRGB(83, 60, 255)
  19. Frame.BorderSizePixel = 0
  20. Frame.Position = UDim2.new(0.313881516, 0, 0.290243924, 0)
  21. Frame.Size = UDim2.new(0, 421, 0, 344)
  22.  
  23. Title.Name = "Title"
  24. Title.Parent = Frame
  25. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. Title.BackgroundTransparency = 1.000
  27. Title.BorderSizePixel = 0
  28. Title.Position = UDim2.new(0, 0, 0.0929367989, 0)
  29. Title.Size = UDim2.new(0, 421, 0, 55)
  30. Title.Font = Enum.Font.SourceSansBold
  31. Title.Text = "Login"
  32. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. Title.TextScaled = true
  34. Title.TextSize = 14.000
  35. Title.TextStrokeTransparency = 0.000
  36. Title.TextWrapped = true
  37.  
  38. Key.Name = "Key"
  39. Key.Parent = Frame
  40. Key.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. Key.BackgroundTransparency = 1.000
  42. Key.BorderSizePixel = 0
  43. Key.Position = UDim2.new(0, 0, 0.567627847, 0)
  44. Key.Size = UDim2.new(0, 421, 0, 62)
  45. Key.Font = Enum.Font.Highway
  46. Key.Text = "Key"
  47. Key.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. Key.TextScaled = true
  49. Key.TextSize = 14.000
  50. Key.TextStrokeTransparency = 0.000
  51. Key.TextWrapped = true
  52.  
  53. Open.Name = "Open"
  54. Open.Parent = Frame
  55. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. Open.BackgroundTransparency = 1.000
  57. Open.Position = UDim2.new(0.0190023761, 0, 0.831395268, 0)
  58. Open.Size = UDim2.new(0, 193, 0, 50)
  59. Open.Font = Enum.Font.Highway
  60. Open.Text = "Submit"
  61. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. Open.TextScaled = true
  63. Open.TextSize = 14.000
  64. Open.TextStrokeTransparency = 0.000
  65. Open.TextWrapped = true
  66. Open.MouseButton1Click:Connect(function()
  67.     if Key.Text == "f58b98cce7d51e53ade94e7bb460e4f24fb7e0ff==" then
  68.         Open.Parent.Visible = false
  69.         Key.Text = "Correct Key!"
  70.         wait(2)
  71.         loadstring(game:HttpGet("https://raw.githubusercontent.com/Auberon-Coding/Roblox-Scripts/main/Script%20Hub"))()
  72.     else
  73.         Key.Text = "Wrong Key?!"
  74.         return;
  75.     end
  76.     Key.Text = "key"
  77. end)
  78.  
  79. GetKey.Name = "Get-Key"
  80. GetKey.Parent = Frame
  81. GetKey.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  82. GetKey.BackgroundTransparency = 1.000
  83. GetKey.Position = UDim2.new(0.52494061, 0, 0.831395268, 0)
  84. GetKey.Size = UDim2.new(0, 193, 0, 50)
  85. GetKey.Font = Enum.Font.Highway
  86. GetKey.Text = "Get Key"
  87. GetKey.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. GetKey.TextScaled = true
  89. GetKey.TextSize = 14.000
  90. GetKey.TextStrokeTransparency = 0.000
  91. GetKey.TextWrapped = true
  92. GetKey.MouseButton1Click:Connect(function()
  93.     setclipboard("https://mboost.me/a/8eu")
  94.     wait(1)
  95.     StarterGui:SetCore("SendNotification", {
  96.         Title = "Get Key"
  97.         Text = "The Website Was Been Copied"
  98.     })
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement