Shared
Retrieval
local round = Wizgoose.get("round")
print(round.Value) --> { participantIds: {} }
print(round.Value.participantIds) --> {}Listening for changes
round:Changed("participantIds"):Connect(function(current, previous)
print(current, previous)
end)Listening for item insertion
round:ItemAddedIn("participantIds"):Connect(function(addedParticipantId)
print(addedParticipantId)
end)Listening for item removal
Last updated