In my new game, Alfa Labs 2, I am trying to make a script that detects if you are in the Alfa Labs Group And says above your head, Group rank, And then shows pictures of the AL logo. How?
Do a server script inside ServerScriptService, and add this:
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | plr.CharacterAdded:Connect( function (char) |
3 | if plr:IsInGroup(ID HERE) then |
4 | --add the BillboardGui Here |
5 | end |
6 | end ) |
7 | end ) |
Hope I helped.