Volt

gethiddenproperties

Gets all hidden properties of an instance.

Syntax

gethiddenproperties(instance: Instance) -> table

Parameters

ParameterTypeDescription
instanceInstanceThe instance to check

Returns

TypeDescription
tableDictionary of hidden property values

Description

gethiddenproperties returns a table containing all hidden (non-scriptable) properties and their current values.

Example

local part = workspace.Part
local hidden = gethiddenproperties(part)

for property, value in pairs(hidden) do
    print(property, "=", value)
end

On this page