Cache
cache.iscached
指定された Instance が Instance cache に non-nil エントリを持つかどうかを返します。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
指定された Instance が Instance cache に non-nil エントリを持つかどうかを返します。
cache.iscached(instance: Instance): boolean
local Players = game:GetService("Players")
local cached = cache.iscached(Players)
print(cached)
cache.invalidate(Players)
print(cache.iscached(Players))