findClientByName("NAME").player.setTransform("POSITION eg. 15 63 2");
Or if you want a /command
function serverCmdTeleTo(%c, %x, %y, %z) {if(isObject(%p = %c.player)) %p.setTransform(%x SPC %y SPC %z);}
Note that that isn't admin only. Admin only version:
function serverCmdTeleTo(%c, %x, %y, %z) {if(isObject(%p = %c.player) && %c.isAdmin) %p.setTransform(%x SPC %y SPC %z);}
If anyone is going to use this in an add-on, make sure to fully define the transform of the player (with axis rotation). I dont think you have to, but it might rotate you funnily each time otherwise.