here's the script that I promised
local p = game.Players.LocalPlayer
local t = workspace:WaitForChild("TeleportPart")
local sound = workspace:WaitForChild("Pop")
script.Parent.MouseButton1Click:Connect(function()
sound:Play()
local c = p.Character
if c then
c:WaitForChild("HumanoidRootPart").CFrame = t.CFrame + Vector3.new(0,3,0)
end
end)
have a nice day
but make sure you have
a part named TeleportPart
and a pop sound effect