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

How do I make it so a Certain Rank in a Certain Group has mod? (Adonis Admin) [closed]

Asked by 6 years ago

My group is called ? United States Marine Corps ? .

Closed as Not Constructive by minikitkat

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

2 answers

Log in to vote
0
Answered by
fredfishy 833 Moderation Voter
6 years ago
GROUP_ID = 5
RANK_REQUIRED = 100

game:GetService("Players"):Connect(function(player)
    if player:GetRankInGroup(GROUP_ID) > RANK_REQUIRED then
        -- Whatever you want to have happen here
    end
end)
Ad
Log in to vote
0
Answered by 6 years ago

Please provide code this website is not here to give you code it is here to help you with your current code.