-- Use this script on a trigger zone placed on the Player Start postion. function togglehud_init(e) end function togglehud_main(e) if g_Entity[e]['plrinzone']==1 then HideHuds() Destroy(e) Prompt("Press E to enable the HUD.") end if g_KeyPressE == 1 then ShowHuds() end else HideHuds() end end end