Do not execute If User is login as Administrator or any Specific Role

Solution, using and statement ‘&&’ for another specific role.

Closing <?php if() : ?>, <?php else : ?> Tag with a Column : to be able to post scripts inside the Loop.

<?php
global $current_user; // Use global
get_currentuserinfo(); // Make sure global is set, if not set it.

if ( ! user_can( $current_user, "administrator") && ! user_can( $current_user, "specific_role" ) )  : ?> // Check user object has not got subscriber role
    <!-- Not Administrator -->
<?php else : ?>
    <!-- Administrator -->
<?php endif; ?>