Cache
cache.iscached
Возвращает, есть ли у указанной Instance запись non-nil в Instance cache.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Возвращает, есть ли у указанной Instance запись non-nil в 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))