How would I make a group rank only game?

I’m guessing it would be similar to a group rank system.
(the game kicks people unless they are a certain rank)

1 Like

Using the Player:GetRankInGroup() function.

Place this script inside of ServerScriptService.

local GroupId = 00000
local GroupRank = 3

game.Players.PlayerAdded:Connect(function(Player)
    if Player:GetRankInGroup(GroupId) >= GroupRank then
        Player:Kick("Not In Group!")
    end
end)
1 Like