How to Display Taxonomy Custom Meta Box Data in Archive Page?

try get_the_terms to do that
https://developer.wordpress.org/reference/functions/get_the_terms/

<?php $listeNoms = get_the_terms( get_the_ID(), 'game_name'); ?>
<h1>
    <?php foreach ($listeNoms as $name) {?>
        <?php echo esc_html($name);?>
    <?php }?>
</h1>