isstackhidden Synchronous
ishiddenstack
Check whether a function is explicitly marked as hidden from stack inspection. This helps confirm a temporary stack-visibility change was cleared.
Luau
isstackhidden(target: Function | number) -> booleanParameters
| Parameter | Type | Description |
|---|---|---|
target | Function | number | Function or visible stack level. |
Returns
booleantrue when the function is marked hidden.
Example
Luau
local function helper() end
setstackhidden(helper)
print(isstackhidden(helper)) -- true
setstackhidden(helper, false)