Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns whether the given Instance has a non-nil entry in the Instance cache.
cache.iscached(instance: Instance): boolean
instance
Instance
cached
boolean
local Players = game:GetService("Players") local cached = cache.iscached(Players) print(cached) cache.invalidate(Players) print(cache.iscached(Players))