Hi Brian,
You can use the Slick JS to create a slider, please read more on the documentation https://docs.metabox.io/fields/image-advanced/#template-usage
And this to output the field image_advanced
https://docs.metabox.io/fields/image-advanced/#template-usage
<div class="your-class">
<?php
$images = rwmb_meta( 'info', array( 'size' => 'thumbnail' ) );
foreach ( $images as $image ) {
echo '<a href="', $image['full_url'], '"><img src="', $image['url'], '"></a>';
}
?>
</div>