Shared
Methods and properties listed below will work identically on both client and server, with the exception of Value
property as it is a regular table (meaning that you normally iterate through it and use table
methods on it) on the client while on the server it is considered a userdata
.
Retrieval
The get
method can be called anywhere in your code as the method will yield until the data is available, however, beware that error will occur if yield takes too long to resolve. Also keep in mind that the data cannot be accessed directly, thus the data must be accessed through the Value
property.
Method will yield until data is available and will throw an error if it takes too long to resolve.
Listening for changes
Listening for item insertion
Listening for item removal
Last updated