-- Simple Teleport GUI local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") -- Create ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false -- Create Frame local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 100) Frame.Position = UDim2.new(0.4, 0, 0.3, 0) Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui -- Frame Corner local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = Frame -- Title local Title = Instance.new("TextLabel") Title.Text = "Build A Kayak" Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundTransparency = 1 Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 20 Title.Parent = Frame -- Teleport Button local Button = Instance.new("TextButton") Button.Size = UDim2.new(1, -20, 0, 40) Button.Position = UDim2.new(0, 10, 0, 40) Button.Text = "Teleport" Button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Font = Enum.Font.SourceSansBold Button.TextSize = 18 Button.Parent = Frame -- Button Corner local BtnCorner = Instance.new("UICorner") BtnCorner.CornerRadius = UDim.new(0, 8) BtnCorner.Parent = Button -- Button Action Button.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") root.CFrame = CFrame.new(7e8, 7e8, 7e8) end)