This mod doesn't handle displaying different blocks to usergroups just like the built in sidebar does not have that option.
However the same tricks can be used- namely editing the template of the block(s) and using a template conditional to show or hide the content to the usergroup.
Show only to guests
Code:
<vb:if condition="$show['guest']">
** ORIGINAL TEMPLATE CODE HERE
</vb:if>
Show only to members
Code:
<vb:if condition="$show['member']">
** ORIGINAL TEMPLATE CODE HERE
</vb:if>
Show only to mods, admins, super-mods
Code:
<vb:if condition="is_member_of($bbuserinfo, 5,6,7)">
** ORIGINAL TEMPLATE CODE HERE
</vb:if>