Advertisement
yaminameis59

Locust GUI Alpha v1.2

Jan 9th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.42 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 localplayershow = Instance.new("TextButton")
  7. local otherplayersshow = Instance.new("TextButton")
  8. local jailbreakshow = Instance.new("TextButton")
  9. local localplayerhide = Instance.new("TextButton")
  10. local otherplayershide = Instance.new("TextButton")
  11. local jailbreakhide = Instance.new("TextButton")
  12. local localplayer = Instance.new("Frame")
  13. local speed = Instance.new("TextButton")
  14. local label_2 = Instance.new("TextLabel")
  15. local jump = Instance.new("TextButton")
  16. local players = Instance.new("Frame")
  17. local boxesp = Instance.new("TextButton")
  18. local label_3 = Instance.new("TextLabel")
  19. local jailbreak = Instance.new("Frame")
  20. local jailbreakautorob = Instance.new("TextButton")
  21. local label_4 = Instance.new("TextLabel")
  22.  
  23. --Properties:
  24.  
  25. ScreenGui.Parent = game.CoreGui
  26.  
  27. main.Name = "main"
  28. main.Parent = ScreenGui
  29. main.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  30. main.Position = UDim2.new(0.361963183, 0, 0.136712745, 0)
  31. main.Size = UDim2.new(0, 567, 0, 300)
  32. main.Active = true
  33. main.Draggable = true
  34. main.Visible = true
  35.  
  36. label.Name = "label"
  37. label.Parent = main
  38. label.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  39. label.Position = UDim2.new(-0.0019916622, 0, 0.00928792357, 0)
  40. label.Size = UDim2.new(0, 568, 0, 29)
  41. label.Font = Enum.Font.SciFi
  42. label.Text = "Locust GUI Alpha v1.2"
  43. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. label.TextSize = 14.000
  45.  
  46. localplayershow.Name = "localplayershow"
  47. localplayershow.Parent = main
  48. localplayershow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  49. localplayershow.Position = UDim2.new(0.0209503435, 0, 0.11439392, 0)
  50. localplayershow.Size = UDim2.new(0, 261, 0, 64)
  51. localplayershow.Font = Enum.Font.SciFi
  52. localplayershow.Text = "Show LocalPlayer tab"
  53. localplayershow.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. localplayershow.TextSize = 25.000
  55. localplayershow.MouseButton1Down(function()
  56.     localplayer.Active = true
  57.     localplayer.Draggable = true
  58.     localplayer.Visible = true
  59. end)
  60.  
  61. otherplayersshow.Name = "otherplayersshow"
  62. otherplayersshow.Parent = main
  63. otherplayersshow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  64. otherplayersshow.Position = UDim2.new(0.0209503435, 0, 0.418619394, 0)
  65. otherplayersshow.Size = UDim2.new(0, 261, 0, 64)
  66. otherplayersshow.Font = Enum.Font.SciFi
  67. otherplayersshow.Text = "Show other players tab"
  68. otherplayersshow.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. otherplayersshow.TextSize = 25.000
  70. otherplayersshow.MouseButton1Down:connect(function()
  71.     players.Active = true
  72.     players.Draggable = true
  73.     players.Visible = true
  74. end)
  75.  
  76. jailbreakshow.Name = "jailbreakshow"
  77. jailbreakshow.Parent = main
  78. jailbreakshow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  79. jailbreakshow.Position = UDim2.new(0.0209503435, 0, 0.728679597, 0)
  80. jailbreakshow.Size = UDim2.new(0, 261, 0, 64)
  81. jailbreakshow.Font = Enum.Font.SciFi
  82. jailbreakshow.Text = "Show Jailbreak tab"
  83. jailbreakshow.TextColor3 = Color3.fromRGB(0, 0, 0)
  84. jailbreakshow.TextSize = 25.000
  85. jailbreakshow.MouseButton1Down:connect(function()
  86.     jailbreak.Active = true
  87.     jailbreak.Draggable = true
  88.     jailbreak.Visible = true
  89. end)
  90.  
  91. localplayerhide.Name = "localplayerhide"
  92. localplayerhide.Parent = main
  93. localplayerhide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  94. localplayerhide.Position = UDim2.new(0.539468825, 0, 0.11439392, 0)
  95. localplayerhide.Size = UDim2.new(0, 261, 0, 64)
  96. localplayerhide.Font = Enum.Font.SciFi
  97. localplayerhide.Text = "Hide LocalPlayer tab"
  98. localplayerhide.TextColor3 = Color3.fromRGB(0, 0, 0)
  99. localplayerhide.TextSize = 25.000
  100. localplayerhide.MouseButton1Down(function()
  101.     localplayer.Active = false
  102.     localplayer.Draggable = false
  103.     localplayer.Visible = false
  104. end)
  105.  
  106. otherplayershide.Name = "otherplayershide"
  107. otherplayershide.Parent = main
  108. otherplayershide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  109. otherplayershide.Position = UDim2.new(0.539468825, 0, 0.417727262, 0)
  110. otherplayershide.Size = UDim2.new(0, 261, 0, 64)
  111. otherplayershide.Font = Enum.Font.SciFi
  112. otherplayershide.Text = "Hide Other Players tab"
  113. otherplayershide.TextColor3 = Color3.fromRGB(0, 0, 0)
  114. otherplayershide.TextSize = 25.000
  115. otherplayershide.MouseButton1Down:connect(function()
  116.     players.Active = false
  117.     players.Draggable = false
  118.     players.Visible = false
  119. end)
  120.  
  121. jailbreakhide.Name = "jailbreakhide"
  122. jailbreakhide.Parent = main
  123. jailbreakhide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  124. jailbreakhide.Position = UDim2.new(0.537705183, 0, 0.727727294, 0)
  125. jailbreakhide.Size = UDim2.new(0, 261, 0, 64)
  126. jailbreakhide.Font = Enum.Font.SciFi
  127. jailbreakhide.Text = "Hide JailBreak tab"
  128. jailbreakhide.TextColor3 = Color3.fromRGB(0, 0, 0)
  129. jailbreakhide.TextSize = 25.000
  130. jailbreakhide.MouseButton1Down:connect(function()
  131.     jailbreak.Active = false
  132.     jailbreak.Draggable = false
  133.     jailbreak.Visible = false
  134. end)
  135.  
  136. localplayer.Name = "localplayer"
  137. localplayer.Parent = ScreenGui
  138. localplayer.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  139. localplayer.Position = UDim2.new(0.0771253332, 0, 0.0430107489, 0)
  140. localplayer.Size = UDim2.new(0, 219, 0, 361)
  141. localplayer.Active = false
  142. localplayer.Draggable = false
  143. localplayer.Visible = false
  144.  
  145.  
  146. speed.Name = "speed"
  147. speed.Parent = localplayer
  148. speed.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  149. speed.Position = UDim2.new(0.0209502596, 0, 0.114393927, 0)
  150. speed.Size = UDim2.new(0, 209, 0, 140)
  151. speed.Font = Enum.Font.SciFi
  152. speed.Text = "Walkspeed"
  153. speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  154. speed.TextSize = 25.000
  155. speed.MouseButton1Down:connect(function()
  156.     game.Workspace.Allofthegame4u.Humanoid.WalkSpeed = 135
  157. end)
  158.  
  159. label_2.Name = "label"
  160. label_2.Parent = localplayer
  161. label_2.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  162. label_2.Size = UDim2.new(0, 213, 0, 38)
  163. label_2.Font = Enum.Font.SciFi
  164. label_2.Text = "LocalPlayer"
  165. label_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  166. label_2.TextSize = 25.000
  167.  
  168. jump.Name = "jump"
  169. jump.Parent = localplayer
  170. jump.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  171. jump.Position = UDim2.new(0.0209502596, 0, 0.532676458, 0)
  172. jump.Size = UDim2.new(0, 209, 0, 140)
  173. jump.Font = Enum.Font.SciFi
  174. jump.Text = "JumpPower"
  175. jump.TextColor3 = Color3.fromRGB(0, 0, 0)
  176. jump.TextSize = 25.000
  177. jump.MouseButton1Down:connect(function()
  178.     game.Workspace.Allofthegame4u.Humanoid.JumpPower = 245
  179. end)
  180.  
  181. players.Name = "players"
  182. players.Parent = ScreenGui
  183. players.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  184. players.Position = UDim2.new(0.067484647, 0, 0.642089128, 0)
  185. players.Size = UDim2.new(0, 252, 0, 203)
  186. players.Active = false
  187. players.Draggable = false
  188. players.Visible = false
  189.  
  190. boxesp.Name = "boxesp"
  191. boxesp.Parent = players
  192. boxesp.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  193. boxesp.Position = UDim2.new(0.0843335986, 0, 0.247506231, 0)
  194. boxesp.Size = UDim2.new(0, 209, 0, 152)
  195. boxesp.Font = Enum.Font.SciFi
  196. boxesp.Text = "Box Esp"
  197. boxesp.TextColor3 = Color3.fromRGB(0, 0, 0)
  198. boxesp.TextSize = 25.000
  199. boxesp.MouseButton1Down:connect(function()
  200.     loadstring(game:httpget("https://pastebin.com/raw/gwN6fn2v", true))()
  201. end)
  202.  
  203. label_3.Name = "label"
  204. label_3.Parent = players
  205. label_3.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  206. label_3.Size = UDim2.new(0, 252, 0, 50)
  207. label_3.Font = Enum.Font.SciFi
  208. label_3.Text = "Other Players"
  209. label_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  210. label_3.TextSize = 25.000
  211.  
  212. jailbreak.Name = "jailbreak"
  213. jailbreak.Parent = ScreenGui
  214. jailbreak.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  215. jailbreak.Position = UDim2.new(0.553899944, 0, 0.623655975, 0)
  216. jailbreak.Size = UDim2.new(0, 250, 0, 215)
  217. jailbreak.Active = false
  218. jailbreak.Draggable = false
  219. jailbreak.Visible = false
  220.  
  221. jailbreakautorob.Name = "jailbreakautorob"
  222. jailbreakautorob.Parent = jailbreak
  223. jailbreakautorob.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  224. jailbreakautorob.Position = UDim2.new(0.0907532871, 0, 0.294461936, 0)
  225. jailbreakautorob.Size = UDim2.new(0, 218, 0, 141)
  226. jailbreakautorob.Font = Enum.Font.SciFi
  227. jailbreakautorob.Text = "Jailbreak AutoRob"
  228. jailbreakautorob.TextColor3 = Color3.fromRGB(0, 0, 0)
  229. jailbreakautorob.TextSize = 25.000
  230. jailbreakautorob.MouseButton1Down:connect(function()
  231.     loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)
  232. end)
  233.  
  234. label_4.Name = "label"
  235. label_4.Parent = jailbreak
  236. label_4.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  237. label_4.Size = UDim2.new(0, 250, 0, 45)
  238. label_4.Font = Enum.Font.SciFi
  239. label_4.Text = "Jailbreak ONLY"
  240. label_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  241. label_4.TextSize = 25.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement