Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- local localplayershow = Instance.new("TextButton")
- local otherplayersshow = Instance.new("TextButton")
- local jailbreakshow = Instance.new("TextButton")
- local localplayerhide = Instance.new("TextButton")
- local otherplayershide = Instance.new("TextButton")
- local jailbreakhide = Instance.new("TextButton")
- local localplayer = Instance.new("Frame")
- local speed = Instance.new("TextButton")
- local label_2 = Instance.new("TextLabel")
- local jump = Instance.new("TextButton")
- local players = Instance.new("Frame")
- local boxesp = Instance.new("TextButton")
- local label_3 = Instance.new("TextLabel")
- local jailbreak = Instance.new("Frame")
- local jailbreakautorob = Instance.new("TextButton")
- local label_4 = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
- main.Position = UDim2.new(0.361963183, 0, 0.136712745, 0)
- main.Size = UDim2.new(0, 567, 0, 300)
- main.Active = true
- main.Draggable = true
- main.Visible = true
- label.Name = "label"
- label.Parent = main
- label.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
- label.Position = UDim2.new(-0.0019916622, 0, 0.00928792357, 0)
- label.Size = UDim2.new(0, 568, 0, 29)
- label.Font = Enum.Font.SciFi
- label.Text = "Locust GUI Alpha v1.2"
- label.TextColor3 = Color3.fromRGB(0, 0, 0)
- label.TextSize = 14.000
- label.Visible = true
- localplayershow.Name = "localplayershow"
- localplayershow.Parent = main
- localplayershow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- localplayershow.Position = UDim2.new(0.0209503435, 0, 0.11439392, 0)
- localplayershow.Size = UDim2.new(0, 261, 0, 64)
- localplayershow.Font = Enum.Font.SciFi
- localplayershow.Text = "Show LocalPlayer tab"
- localplayershow.TextColor3 = Color3.fromRGB(0, 0, 0)
- localplayershow.TextSize = 25.000
- localplayershow.MouseButton1Down(function()
- localplayer.Active = true
- localplayer.Draggable = true
- localplayer.Visible = true
- end)
- otherplayersshow.Name = "otherplayersshow"
- otherplayersshow.Parent = main
- otherplayersshow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- otherplayersshow.Position = UDim2.new(0.0209503435, 0, 0.418619394, 0)
- otherplayersshow.Size = UDim2.new(0, 261, 0, 64)
- otherplayersshow.Font = Enum.Font.SciFi
- otherplayersshow.Text = "Show other players tab"
- otherplayersshow.TextColor3 = Color3.fromRGB(0, 0, 0)
- otherplayersshow.TextSize = 25.000
- otherplayersshow.MouseButton1Down:connect(function()
- players.Active = true
- players.Draggable = true
- players.Visible = true
- end)
- jailbreakshow.Name = "jailbreakshow"
- jailbreakshow.Parent = main
- jailbreakshow.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- jailbreakshow.Position = UDim2.new(0.0209503435, 0, 0.728679597, 0)
- jailbreakshow.Size = UDim2.new(0, 261, 0, 64)
- jailbreakshow.Font = Enum.Font.SciFi
- jailbreakshow.Text = "Show Jailbreak tab"
- jailbreakshow.TextColor3 = Color3.fromRGB(0, 0, 0)
- jailbreakshow.TextSize = 25.000
- jailbreakshow.MouseButton1Down:connect(function()
- jailbreak.Active = true
- jailbreak.Draggable = true
- jailbreak.Visible = true
- end)
- localplayerhide.Name = "localplayerhide"
- localplayerhide.Parent = main
- localplayerhide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- localplayerhide.Position = UDim2.new(0.539468825, 0, 0.11439392, 0)
- localplayerhide.Size = UDim2.new(0, 261, 0, 64)
- localplayerhide.Font = Enum.Font.SciFi
- localplayerhide.Text = "Hide LocalPlayer tab"
- localplayerhide.TextColor3 = Color3.fromRGB(0, 0, 0)
- localplayerhide.TextSize = 25.000
- localplayerhide.MouseButton1Down(function()
- localplayer.Active = false
- localplayer.Draggable = false
- localplayer.Visible = false
- end)
- otherplayershide.Name = "otherplayershide"
- otherplayershide.Parent = main
- otherplayershide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- otherplayershide.Position = UDim2.new(0.539468825, 0, 0.417727262, 0)
- otherplayershide.Size = UDim2.new(0, 261, 0, 64)
- otherplayershide.Font = Enum.Font.SciFi
- otherplayershide.Text = "Hide Other Players tab"
- otherplayershide.TextColor3 = Color3.fromRGB(0, 0, 0)
- otherplayershide.TextSize = 25.000
- otherplayershide.MouseButton1Down:connect(function()
- players.Active = false
- players.Draggable = false
- players.Visible = false
- end)
- jailbreakhide.Name = "jailbreakhide"
- jailbreakhide.Parent = main
- jailbreakhide.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- jailbreakhide.Position = UDim2.new(0.537705183, 0, 0.727727294, 0)
- jailbreakhide.Size = UDim2.new(0, 261, 0, 64)
- jailbreakhide.Font = Enum.Font.SciFi
- jailbreakhide.Text = "Hide JailBreak tab"
- jailbreakhide.TextColor3 = Color3.fromRGB(0, 0, 0)
- jailbreakhide.TextSize = 25.000
- jailbreakhide.MouseButton1Down:connect(function()
- jailbreak.Active = false
- jailbreak.Draggable = false
- jailbreak.Visible = false
- end)
- localplayer.Name = "localplayer"
- localplayer.Parent = ScreenGui
- localplayer.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
- localplayer.Position = UDim2.new(0.0771253332, 0, 0.0430107489, 0)
- localplayer.Size = UDim2.new(0, 219, 0, 361)
- localplayer.Active = false
- localplayer.Draggable = false
- localplayer.Visible = false
- speed.Name = "speed"
- speed.Parent = localplayer
- speed.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- speed.Position = UDim2.new(0.0209502596, 0, 0.114393927, 0)
- speed.Size = UDim2.new(0, 209, 0, 140)
- speed.Font = Enum.Font.SciFi
- speed.Text = "Walkspeed"
- speed.TextColor3 = Color3.fromRGB(0, 0, 0)
- speed.TextSize = 25.000
- speed.MouseButton1Down:connect(function()
- game.Workspace.Allofthegame4u.Humanoid.WalkSpeed = 135
- end)
- label_2.Name = "label"
- label_2.Parent = localplayer
- label_2.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
- label_2.Size = UDim2.new(0, 213, 0, 38)
- label_2.Font = Enum.Font.SciFi
- label_2.Text = "LocalPlayer"
- label_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- label_2.TextSize = 25.000
- label_2.Visible = true
- jump.Name = "jump"
- jump.Parent = localplayer
- jump.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- jump.Position = UDim2.new(0.0209502596, 0, 0.532676458, 0)
- jump.Size = UDim2.new(0, 209, 0, 140)
- jump.Font = Enum.Font.SciFi
- jump.Text = "JumpPower"
- jump.TextColor3 = Color3.fromRGB(0, 0, 0)
- jump.TextSize = 25.000
- jump.MouseButton1Down:connect(function()
- game.Workspace.Allofthegame4u.Humanoid.JumpPower = 245
- end)
- players.Name = "players"
- players.Parent = ScreenGui
- players.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
- players.Position = UDim2.new(0.067484647, 0, 0.642089128, 0)
- players.Size = UDim2.new(0, 252, 0, 203)
- players.Active = false
- players.Draggable = false
- players.Visible = false
- boxesp.Name = "boxesp"
- boxesp.Parent = players
- boxesp.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- boxesp.Position = UDim2.new(0.0843335986, 0, 0.247506231, 0)
- boxesp.Size = UDim2.new(0, 209, 0, 152)
- boxesp.Font = Enum.Font.SciFi
- boxesp.Text = "Box Esp"
- boxesp.TextColor3 = Color3.fromRGB(0, 0, 0)
- boxesp.TextSize = 25.000
- boxesp.MouseButton1Down:connect(function()
- loadstring(game:httpget("https://pastebin.com/raw/gwN6fn2v", true))()
- end)
- label_3.Name = "label"
- label_3.Parent = players
- label_3.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
- label_3.Size = UDim2.new(0, 252, 0, 50)
- label_3.Font = Enum.Font.SciFi
- label_3.Text = "Other Players"
- label_3.TextColor3 = Color3.fromRGB(0, 0, 0)
- label_3.TextSize = 25.000
- label_3.Visible = true
- jailbreak.Name = "jailbreak"
- jailbreak.Parent = ScreenGui
- jailbreak.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
- jailbreak.Position = UDim2.new(0.553899944, 0, 0.623655975, 0)
- jailbreak.Size = UDim2.new(0, 250, 0, 215)
- jailbreak.Active = false
- jailbreak.Draggable = false
- jailbreak.Visible = false
- jailbreakautorob.Name = "jailbreakautorob"
- jailbreakautorob.Parent = jailbreak
- jailbreakautorob.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
- jailbreakautorob.Position = UDim2.new(0.0907532871, 0, 0.294461936, 0)
- jailbreakautorob.Size = UDim2.new(0, 218, 0, 141)
- jailbreakautorob.Font = Enum.Font.SciFi
- jailbreakautorob.Text = "Jailbreak AutoRob"
- jailbreakautorob.TextColor3 = Color3.fromRGB(0, 0, 0)
- jailbreakautorob.TextSize = 25.000
- jailbreakautorob.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)
- end)
- label_4.Name = "label"
- label_4.Parent = jailbreak
- label_4.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
- label_4.Size = UDim2.new(0, 250, 0, 45)
- label_4.Font = Enum.Font.SciFi
- label_4.Text = "Jailbreak ONLY"
- label_4.TextColor3 = Color3.fromRGB(0, 0, 0)
- label_4.TextSize = 25.000
- label_4.Visible = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement