Is it possible to ungroup models with a script?

The title. Literally. 30 count.

You can use Instance:GetChildren() then change it will return you a table of all the instances in the model, loop through them then change their parent.

local model = path.to.model
for i,v in pairs(model:GetChildren()) do
   v.Parent = workspace -- put each children of the model to workspace
end
model:Destroy() -- Remove the model
8 Likes