Static Var?

Ive got a static var in my menu scene:

static var lives = 3;

How can I pick this up in my level scene?

script name.lives will give your value. Say, your script name is menu_scene then it will be var value = menu_scene.lives;