Hello

I try to load my second level by "level_load"
my code:

Code:
function Golevel(){
			level_load("2.wmb"); 
}

action player_action()
{
	while(1)
	{
		if(score <= 0){
			
			set(last_txt,SHOW);
			media_stop(f_m);
media_play("robot 7.wav",NULL,170);			
			wait(-3); 
Golevel();   
			
			
			} 

		wait(1);
	}
}




but it crashed in "player_action" code ....How can I solve this problem?

thanks.