Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can a high rank of a certain group kick lower ranks?

Asked by 4 years ago

So im working on a cafe. If anyone trolls or exploits at the cafe a High rank will kick them. I do not know how to script that but I do know the first two lines.

local GroupID = "3660400
local GroupRank = "3"
-- Now that is all I know.

If you know the code, Please answer it as I do not know how to code it.

1 answer

Log in to vote
0
Answered by
DrShockz 233 Moderation Voter
4 years ago

I believe you are looking to get an admin system. It is probably easiest if you get a free one such as HD Admin in the settings you can change group settings which are located at Line 45. Here you can specify the settings. On line 47 you add the group id in the "[ ]" and then on line 48 the group role rank number again inside the "[ ]" and the name of the rank in the quotations e.g

Groups = {
    [12345] = {
       [203]  = "Admin";
      };
};

That is what it will look like! Just replace the "12345" with the group id and the "203" with the rank number in the group!

0
Oh i didnt know that there was a group ID and groupRank there salaarkhan1 28 — 4y
0
Np! DrShockz 233 — 4y
Ad

Answer this question