In the template you make for your page, surround the entire content of the template it in this conditional:
Code:
<if condition="is_member_of($bbuserinfo, x, y, z)">
original content
</if>
where x, y, and z are your usergroupids for your paid members and your administrators and such.
If you want to show a message to non-paying users do something like this:
Code:
<if condition="is_member_of($bbuserinfo, x, y, z)">
original content
<else />
<strong>Sorry, this page is for paying members only.</strong>
</if>