#api/syscall
The Client Store API provides a simple key-value store for client-specific states and preferences.
Sets a value in the client store.
Example:
clientStore.set("theme", "dark")
Gets a value from the client store.
Example:
local theme = clientStore.get("theme")
print("Current theme: " .. theme)
Deletes a value from the client store.
Example:
clientStore.del("theme")