Basic Admin Essentials group ID ranking

First problem: my ranking doesn’t work…. When the ranks I have added join the game, they don’t have commands… then 2nd problem: when I superadmin using the command it works until they rejoin…. once they rejoin no more commands….

It’s normal that an user does not have superadmin anymore when you give them superadmin by using the command.

Oh ok. Should I send a photo of my script in studio?

Sure, make sure to use code tags.

Here is the photo of My script. The script is is SererScriptService

What are code tags…….

These are code tags, copy and paste your code inside of them so that we can easily read your code

I see that you want 254 to have superadmin, rank 100 to have administrator and 70 and 50 to have mod admin, but you did the configuration wrong, you did all ranks in one, you need to do it like this:

['Group Configuration'] = {
      {
              ['Group ID'] = 0, 
              ['Group Rank'] = 254,
              ['Tolerance Type'] = '>=' , 
              [‘Admin Level’] = 3,
      },
      {
              ['Group ID'] = 0,
              ['Group Rank'] = 100,
              ['Tolerance Type'] = '>=' , 
              [‘Admin Level’] = 2,
      },
      {
              ['Group ID'] = 0,
              ['Group Rank'] = 50,
              ['Tolerance Type'] = '>=' , 
              [‘Admin Level’] = 1,
      },
},

Remember to replace “Group ID” with your group id, all players with the rank 50 or above will receive mod, and all players with the rank 100 or higher will receive admin, and 254 will receive superadmin.

Thanks a lot for your answer!!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.