Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
getproperties(instance: Instance): { [string]: any }
instance
Instance
{ [string]: any }
local props = getproperties(workspace.Part) print("Part color: ", props.Color)
for name, value in pairs(getproperties(game:GetService("Lighting"))) do print(name, " = ", value) end