What is the best way of teleporting Players/Models?

i found multiple ways of teleporting players/models but i just wanna stick to one that is the most efficient

there’s position
cframe
SetPrimaryPartCFrame
MoveTo
PivotTo
TranslateBy

idk on what to use?

2 Likes

I personally use MoveTo and SetPrimaryPartCFrame.

2 Likes

HumanoidRootPart.CFrame and SetPrimaryPartCFrame() are the easiest methods i can find.

1 Like

CFrame and SetPrimaryPartCFrame

- These to will basically to the same thing, it’s also similar to setting the `Position` however CFrame will keep the rotation.

MoveTo and PivotTo

- Also basically the same thing, however this won’t teleport the player however just move them towards a destination.
3 Likes