How To Add In-Game Rewards

I and my dev team has been working on this Disclosed Game and wanted to add in-game rewards for certain ranks how would I go about that?

How Do I Add In-Game Rewards For Group Members? How Would I Do It For Certain Ranks? Last But Not Least How Would I Make Certain Ranks Have Acces To The Game?

You could use Player:GetRankInGroup() to do this.

if Player:GetRankInGroup(groupId) == rankId then
    -- Do something
end
2 Likes