CFrame teleport r15 character

Hello, I’m trying to teleport a character using a position, but the only method I know for that, is using this script:

character.Torso.CFrame = CFrame.new(287.749, 2.2, -308.3)
--You arleady know the variables...

But it only works for the r6 character, and the r15 have more than just one Torso.
How could I make it?

Reference its HumanoidRootPart instead :wink:

character.HumanoidRootPart.CFrame = CFrame.new(287.749, 2.2, -308.3)
1 Like
character.HumanoidRootPart.CFrame = CFrame.new(287.749, 2.2, -308.3)
1 Like

Thank you both for the answers!