Well, I would change it into its own scene rather than keeping it in Scene_Map, unless you want other things to still be going on.
If that's the case, then what you could do is simply make a toggle, so have the update method like this:
if Input.press? (Input::Shift)
update_hud
else
update_normal
end