How to make GUIs viewable for only group members

Hello! Does anyone know how to make GUIs viewable for players that are in a group with a rank?

2 Likes

Well this is very easy! Just use the Player:GetRankInGroup() method and it will work out. For example,

if bootsareme:GetRankInGroup(12345) == 1 then
    Gui.Enabled = true
end