Cache
cache.iscached
Devuelve si la Instance indicada tiene una entrada no nil en el Instance cache.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Devuelve si la Instance indicada tiene una entrada no nil en el Instance cache.
cache.iscached(instance: Instance): boolean
local Players = game:GetService("Players")
local cached = cache.iscached(Players)
print(cached)
cache.invalidate(Players)
print(cache.iscached(Players))