Move to different rooms depending on you score

H

hinchpop

Guest
Hi I was just wondering if someone might be able to help. I'm wanting to have my player when they have 0 lives but say the score is over 1000 they go to a game complete room and if it's less than 1000 then they go to a game over room.

Currently this is my code that I learnt from game maker tutorial.

if (lives <1)
{
room_goto(GO);
}
if (global._Score >= 1000)
{
room_goto(GC);
}

Thank you in Advance
 
Top