Cache
cache.iscached
Gibt zurueck, ob die angegebene Instance einen nicht-nil Eintrag im Instance cache hat.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gibt zurueck, ob die angegebene Instance einen nicht-nil Eintrag im Instance cache hat.
cache.iscached(instance: Instance): boolean
local Players = game:GetService("Players")
local cached = cache.iscached(Players)
print(cached)
cache.invalidate(Players)
print(cache.iscached(Players))