local screenGui = Instance.new("ScreenGui") local frame = Instance.new("Frame") local textLabel = Instance.new("TextLabel") local button = Instance.new("TextButton") local creditLabel = Instance.new("TextLabel") screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false frame.Parent = screenGui frame.Size = UDim2.new(0.4, 0, 0.3, 0) frame.Position = UDim2.new(0.3, 0, 0.35, 0) frame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) frame.Active = true frame.Draggable = true textLabel.Parent = frame textLabel.Size = UDim2.new(1, 0, 0.4, 0) textLabel.Position = UDim2.new(0, 0, 0, 0) textLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.Font = Enum.Font.SourceSans textLabel.TextSize = 24 textLabel.Text = "The highest ever mountain script" button.Parent = frame button.Size = UDim2.new(0.5, 0, 0.25, 0) button.Position = UDim2.new(0.25, 0, 0.5, 0) button.BackgroundColor3 = Color3.new(0.3, 0.6, 0.3) button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.SourceSans button.TextSize = 20 button.Text = "Go to top" creditLabel.Parent = frame creditLabel.Size = UDim2.new(1, 0, 0.2, 0) creditLabel.Position = UDim2.new(0, 0, 0.8, 0) creditLabel.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15) creditLabel.TextColor3 = Color3.new(1, 1, 1) creditLabel.Font = Enum.Font.SourceSansItalic creditLabel.TextSize = 18 creditLabel.Text = "Made by Seliq scripts/indonesiangamer777" button.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(134, 5033, 7574) end end)