Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a overhead Gui that dects groups?

Asked by
ANE_bot 17
5 years ago

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?

0
if player:IsInGroup(ID) then .... theking48989987 2147 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Do a server script inside ServerScriptService, and add this:

1game.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)
7end)

Hope I helped.

0
Thx so much! ANE_bot 17 — 5y
Ad

Answer this question