Hi @nielfernandez
I’m not sure if this is what you want but WordPress used level system but it was deprecated in WordPress version 2.1 and should not be used at all. WordPress still has minimal legacy support for these.
By default, the levels aren’t shown. They still exist but are tucked away behind the scenes. While not recommended, if you need to control who has what level (levels are just capabilities), add this to your plugin or your theme’s functions.php:
add_filter( 'members_remove_old_levels', '__return_false' );
Hopefully, that helps.