Very easy

There are a few ways - here are two:
https://www.ubbdev.com/forum/showthreaded.php/Cat/0/Number/111425/page//vc/1https://www.ubbdev.com/forum/showthreaded.php/Cat/0/Number/111429/page//vc/1The first method is one I worked up, I have changed it ever slightly so that the rest of the page finishes out. I changed the "Make sure they should be here" part to the following:
[:"red"]
// -----------------------------
// Make sure they should be here
if (!stristr($user['U_Groups'],"-11-")) {
echo "<br /><B>You must be a member of the SSB Roster Admin group to access this page.</b><br /><br />";
echo "</td></tr></table></td></tr></table></body></html>";
exit;
} [/]
Just make sure you authenticate U_Groups, and change the group number (11 above) to your desired group (and you can do multiple groups with a slight code change).
And this, like all things, is very customizable! I have an entire admin area built off the above, heh.