Advertisement
yaminameis59

Locust GUI Alpha v1.3

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