teleport, Loadlevel

I have a problem whit my scirpt (im very new to scripting) When i load my level which is inside my house i want to spawn at the same location when go into the house but i simply just spawn where i normaly do when i active the script inside the house

my script looks like this

function OnTriggerEnter (other: Collider){
Application.LoadLevel(1);{

}

}

sry for my English, Im from Denmark :slight_smile:

As far as i understood You need to save your players position before loading another scene.
This can be done by

DontDestroyOnLoad(player_transform.gameObject);

You can use this player_tranform to assign your players position after loading the new scene i.e house scene