This in you function php hides it from everyone but admins
//Removes BuddyBar from non-admins only
function splen_remove_admin_bar() {
if( !is_super_admin() )
add_filter( 'show_admin_bar', '__return_false' );
}
add_action('wp', 'splen_remove_admin_bar');
Is that what you mean?
Preferred not to hack each site’s theme or the bp plugin.
https://wordpress.org/plugins/admin-bar-disabler/
Removes the bp section as well. Can set by role or capability