“If an object equals a term id then return the term name”

Great googly moogly, I figured this one out.

 $values = get_post_meta( get_the_ID(), 'your_meta_whatever', true ); 
 foreach ($values as $value) 
 {$term = get_term_by('term_id', $value, 'your taxonomy'); 
 $name = $term->name echo $name;}

If you want to keep ’em separated by commas or the characters your choice

 $values = get_post_meta( get_the_ID(), 'your_meta_whatever', true );
 $total = count($values);$i=0; foreach ($values as $value) {$i++; 
 $term = get_term_by('term_id', $value, 'your taxonomy'); 
 $name = $term->name; 
 echo $name; 
if($i !=$total) echo', ';}