Advertisement
yaminameis59

Locust GUI Alpha v1.1

Jan 9th, 2022
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.70 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local print = Instance.new("TextButton")
  7. local jailbreakautorob = Instance.new("TextButton")
  8. local boxesp = Instance.new("TextButton")
  9. local speed = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  18. main.Position = UDim2.new(0.472392648, 0, 0.116743475, 0)
  19. main.Size = UDim2.new(0, 423, 0, 323)
  20. main.Active = true
  21. main.Draggable = true
  22.  
  23. label.Name = "label"
  24. label.Parent = main
  25. label.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  26. label.Position = UDim2.new(-0.00199150643, 0, 0.00928792544, 0)
  27. label.Size = UDim2.new(0, 423, 0, 29)
  28. label.Font = Enum.Font.SciFi
  29. label.Text = "Locust GUI Alpha v1.1"
  30. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. label.TextSize = 14.000
  32.  
  33. print.Name = "print"
  34. print.Parent = main
  35. print.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  36. print.Position = UDim2.new(0.00899833441, 0, 0.0997229815, 0)
  37. print.Size = UDim2.new(0, 210, 0, 150)
  38. print.Font = Enum.Font.SciFi
  39. print.Text = "Print Text"
  40. print.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. print.TextSize = 25.000
  42. print.MouseButton1Down:connect(function()
  43.     print('Text')
  44. end)
  45.  
  46. jailbreakautorob.Name = "jailbreakautorob"
  47. jailbreakautorob.Parent = main
  48. jailbreakautorob.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  49. jailbreakautorob.Position = UDim2.new(-0.00199157745, 0, 0.566529453, 0)
  50. jailbreakautorob.Size = UDim2.new(0, 218, 0, 141)
  51. jailbreakautorob.Font = Enum.Font.SciFi
  52. jailbreakautorob.Text = "Jailbreak AutoRob"
  53. jailbreakautorob.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. jailbreakautorob.TextSize = 25.000
  55. jailbreakautorob.MouseButton1Down:connect(function()
  56.     loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  57. end)
  58.  
  59. boxesp.Name = "boxesp"
  60. boxesp.Parent = main
  61. boxesp.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  62. boxesp.Position = UDim2.new(0.504968524, 0, 0.0997229815, 0)
  63. boxesp.Size = UDim2.new(0, 209, 0, 152)
  64. boxesp.Font = Enum.Font.SciFi
  65. boxesp.Text = "Box Esp"
  66. boxesp.TextColor3 = Color3.fromRGB(0, 0, 0)
  67. boxesp.TextSize = 25.000
  68. boxesp.MouseButton1Down:connect(function()
  69.     loadstring(game:HttpGet("https://pastebin.com/raw/gwN6fn2v", true))()
  70. end)
  71.  
  72. speed.Name = "speed"
  73. speed.Parent = main
  74. speed.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  75. speed.Position = UDim2.new(0.504968524, 0, 0.56411922, 0)
  76. speed.Size = UDim2.new(0, 209, 0, 140)
  77. speed.Font = Enum.Font.SciFi
  78. speed.Text = "Walkspeed"
  79. speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  80. speed.TextSize = 25.000
  81. speed.MouseButton1Down:connect(function()
  82.     game.Workspace.Humanoid.WalkSpeed = 135
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement