gethiddenproperties
Gets all hidden properties of an instance.
Syntax
gethiddenproperties(instance: Instance) -> tableParameters
| Parameter | Type | Description |
|---|---|---|
instance | Instance | The instance to check |
Returns
| Type | Description |
|---|---|
table | Dictionary 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)
endRelated Functions
gethiddenproperty- Get single hidden propertysethiddenproperty- Set hidden propertygetproperties- Get all properties