sethiddenproperty
function sethiddenproperty(instance: Instance, property_name: string, property_value: any): booleanParameters
Example
local part = Instance.new("Part")
print(gethiddenproperty(part, "DataCost")) -- Output: 20, true
sethiddenproperty(part, "DataCost", 100)
print(gethiddenproperty(part, "DataCost")) -- Output: 100, trueLast updated