Telport to part

How can I teleport a user 5 studs above a specific part?

1 Like

try

Character.HumanoidRootPart.CFrame += Vector3.new(0, 5, 0)

If I have game.Players.LocalPlayer, do I just do game.Players.LocalPlayer.Character to get the Character?

yes bc its client sided so it should be in local

oh 5 studs above a specific part?

Character.HumanoidRootPart.CFrame = game.Workspace.Part.CFrame + Vector3.new(0, 5, 0)