1. Hi all again. How i can get is the group have permission?
     
  2. Here's both, just in case you need it.

    //For Group
    if ( permission.GroupHasPermission("GROUPNAME", "MyPlugin.MyPermission") )
    {
    // do stuff
    }

    // For User
    if ( permission.UserHasPermission(player.userID, "MyPlugin.my_permission") )
    {
    // Do some stuff
    }
     
    Last edited by a moderator: Jan 18, 2016