how would I teleport a player to a specific location using a proximity prompt. I've tried a couple of things but none of them have worked.
Any help is much appreciated.
Put this script in your proximity prompt. Change 0,0,0 to your position.
SCRIPT:
1 | script.Parent.Triggered:Connect( function (player) |
2 | player.Character:MoveTo(Vector 3. new( 0 , 0 , 0 )) |
3 | end ) |