Changing Scenes

Hello everybody … I am having a problem with… i hope you can give me an idea or solution… I have 2 scenes… in one scene i have a button that load the other scene and in the other i have a button that make me go back… there is no problem… the problem is that when i go back to the first scene the player position is not the same as it was when i load the other scene… how can i make it appear in the same scene

Are you have some variables is using static?

If using, you should in Start() or Awake() to reset the variables.

static var playerPosition : Vector3;

function Awake ()
{
    playerPosition = Vector3(0,0,0);
}