diff --git a/rbx_dom_lua/src/customProperties.lua b/rbx_dom_lua/src/customProperties.lua index f115f7c82..8653b1f8d 100644 --- a/rbx_dom_lua/src/customProperties.lua +++ b/rbx_dom_lua/src/customProperties.lua @@ -113,13 +113,14 @@ return { }, WorldPivotData = { read = function(instance) - return true, instance:GetPivot() + return true, instance.WorldPivot end, write = function(instance, _, value) if value == nil then return true, nil else - return true, instance:PivotTo(value) + instance.WorldPivot = value + return true end end, },