teleport To Player

Teleport the agent to the player.

agent.teleportToPlayer();

Example

Bring the agent to the player when “come” is typed in the game chat.

player.onChat("come", function () {
    agent.teleportToPlayer();
});