local showgui = Instance.new("ScreenGui", game.CoreGui) showgui.Name = "ShowGuiWallHopTestTower" local function createBtn(text, posY, callback) local btn = Instance.new("TextButton", showgui) btn.Size = UDim2.new(0, 40, 0, 40) btn.Position = UDim2.new(0, 0, 0.3, posY) btn.Text = text btn.TextScaled = true btn.Draggable = true btn.Font = Enum.Font.Gotham btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) end createBtn("On/Off", 1, function() local frame = game:GetService("CoreGui").WallHopTestTower.Frame if frame.Visible == false then frame.Visible = true else frame.Visible = false end end) local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "WallHopTestTower" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 400, 0, 250) frame.Position = UDim2.new(0.5, -200, 0.5, -125) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "Wall Hop Test Tower" title.TextScaled = true title.Font = Enum.Font.GothamBold title.TextColor3 = Color3.fromRGB(255, 255, 255) local function createBtn(text, posY, callback) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0, 360, 0, 40) btn.Position = UDim2.new(0, 20, 0, posY) btn.Text = text btn.TextScaled = true btn.Font = Enum.Font.Gotham btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) end createBtn("Get VIP", 60, function() workspace.KillPart:Destroy() workspace.KlPart:Destroy() workspace.Sign:Destroy() end) createBtn("TP VIP", 110, function() local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart rootPart.CFrame = CFrame.new(-14.625882148742676, 3.9999992847442627, -9.27219295501709) end) createBtn("TP End", 160, function() local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart rootPart.CFrame = CFrame.new(136.50531005859375, 373.9999694824219, 28.0859317779541) end) createBtn("Destroy GUI", 210, function() gui:Destroy() showgui:Destroy() end) gui.Frame.Visible = false