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

Is there a Way to show a special gui to a group member? [closed]

Asked by 3 years ago

so i want to show a special gui to my group members i dont have a code for this

Closed as Not Constructive by raid6n and uhi_o

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by
Ali_MTR 30
3 years ago

its simple


game.Players.PlayerAdded:Connect(function(newPlayer) if newPlayer:IsInGroup(GROUP_ID) then -- put your group id here game.startergui.YourguiName.Enabled = true -- here you reference your gui and enable it end end)
Ad