Cache
cache.iscached
Retorna se a Instance informada tem uma entrada non-nil no Instance cache.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retorna se a Instance informada tem uma entrada non-nil no 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))