of     1   

ferano
#183730398Tuesday, February 16, 2016 3:00 AM GMT

How would I make a script that puts every single model and part in the workspace into one model?
cofunction
#183730522Tuesday, February 16, 2016 3:02 AM GMT

local model = Instance.new("Model", game.ServerStorage) for _, thing in pairs (game.Workspace:GetChildren()) do if thing.Name ~= "Terrain" then thing:clone().Parent = model end end

    of     1