local ScreenGui = Instance.new("ScreenGui") local MainGUI = Instance.new("Frame") local TELEPORTJAIL = Instance.new("TextButton") local close = Instance.new("TextButton") local OPENGUI = Instance.new("Frame") local open = Instance.new("TextButton") --Properties: ScreenGui.Parent = game.CoreGui MainGUI.Active = true MainGUI.Draggable = true MainGUI.Name = "MainGUI" MainGUI.Parent = ScreenGui MainGUI.BackgroundColor3 = Color3.new(1, 1, 1) MainGUI.Position = UDim2.new(0.0903284699, 0, 0.400398403, 0) MainGUI.Size = UDim2.new(0, 200, 0, 100) MainGUI.Visible = false TELEPORTJAIL.Name = "TELEPORT JAIL" TELEPORTJAIL.Parent = MainGUI TELEPORTJAIL.BackgroundColor3 = Color3.new(1, 1, 1) TELEPORTJAIL.BorderSizePixel = 0 TELEPORTJAIL.Position = UDim2.new(0, 0, 0.25, 0) TELEPORTJAIL.Size = UDim2.new(0, 200, 0, 50) TELEPORTJAIL.Font = Enum.Font.Arcade TELEPORTJAIL.Text = "JAIL" TELEPORTJAIL.TextColor3 = Color3.new(0, 0, 0) TELEPORTJAIL.TextSize = 30 TELEPORTJAIL.MouseButton1Click:connect(function() loadstring(game:HttpGet("https://pastebin.com/raw/fY8ZdNPY",true))() print("Working") end) close.Name = "close" close.Parent = MainGUI close.BackgroundColor3 = Color3.new(1, 1, 1) close.Position = UDim2.new(0.899999976, 0, 0, 0) close.Size = UDim2.new(0, 20, 0, 20) close.Font = Enum.Font.SourceSans close.Text = "X" close.TextColor3 = Color3.new(0, 0, 0) close.TextSize = 14 close.MouseButton1Click:connect(function() MainGUI.Visible = false OPENGUI.Visible = true end) OPENGUI.Name = "OPENGUI" OPENGUI.Parent = ScreenGui OPENGUI.BackgroundColor3 = Color3.new(1, 1, 1) OPENGUI.Position = UDim2.new(0, 0, 0.531872511, 0) OPENGUI.Size = UDim2.new(0, 63, 0, 23) open.Name = "open" open.Parent = OPENGUI open.BackgroundColor3 = Color3.new(1, 1, 1) open.Position = UDim2.new(-0.142857149, 0, 0, 0) open.Size = UDim2.new(0, 72, 0, 23) open.Font = Enum.Font.SourceSans open.Text = "open" open.TextColor3 = Color3.new(0, 0, 0) open.TextSize = 14 open.MouseButton1Click:connect(function() MainGUI.Visible = true OPENGUI.Visible = false end) print("Working")