How to teleport player to gameobject

I have a two player platformer game put together kind of like the campaign in super smash bros. brawl, and I need to have it so when player 2 presses a button, it teleports Player 2 to Player 1s transform.
I have looked all over and have found nothing on the subject of teleporting to ‘specific’ gameobjects. Can anyone offer any help?

transform.position = player2.position;

Store the other player position, and then move the current player to that position like you would any other situation involving player movement.

Hey ! i know it’s been a long time since but when i try this, it can’t find my “TeleportPoint” gameobject, is it normal ? How can i get him to find the GameObject?