check if player is in group code example
Example: check if player is in group
game.Players.PlayerAdded:Connect(function(newPlayer)
if newPlayer:IsInGroup(0) then -- Change "0" With Group ID
print "Player is in Group!"
end
end)