of     1   

ferano
#182915411Wednesday, February 03, 2016 2:47 AM GMT

How would I make a GUI only appear for certain members of a group?
HomeguardDev
#182915593Wednesday, February 03, 2016 2:50 AM GMT

You could put a LocalScript in the GUI frame, and have it check the if game.Players.LocalPlayer is a part of X group. If they are, set it to visible. If not, set it to invisible.
ferano
#182915796Wednesday, February 03, 2016 2:54 AM GMT

That is a good idea, now how do I check for their rank?
HomeguardDev
#182915916Wednesday, February 03, 2016 2:56 AM GMT

http://wiki.roblox.com/index.php?title=API:Class/GroupService/GetGroupInfoAsync This method will give you the information about the ranks, unfortunately as for checking what rank someone is in, I couldn't find, but I'm sure it exists if you do a little bit of digging into existing scripts / the wiki.
ferano
#182916310Wednesday, February 03, 2016 3:02 AM GMT

Thanks :)
LilMcManiac
#182921795Wednesday, February 03, 2016 4:52 AM GMT

:GetRoleInGroup(id) :GetRankInGroup(id) :GetRoleInGroup() returns the string role, for the player :GetRankInGroup() returns the number value, for the role the player is in

    of     1