Ignore false passed as a child

This commit is contained in:
aaron 2025-01-04 00:45:55 +00:00
parent c796e48173
commit 46a2043356
3 changed files with 16 additions and 1 deletions

View file

@ -93,7 +93,7 @@ local function process_properties(properties: Map<unknown, unknown>, instance: I
else
process_properties(value :: Map<unknown, unknown>, instance, cache, depth + 1)
end
else
elseif type(value) == "userdata" then
(value :: Instance).Parent = instance -- parent child
end
end