Hi Nick,
You'll want to use WordPress conditional tags in your templates, for example:
if(is_page('page-slug')) { the_block('your-block'); }
or
if(is_page(25)) { the_block('your-block'); }
where 25 is the page id. This will mean the block only shows on that page.