menu
Roblox Forum Archive
Home
User Search
Forums
Donate
search
settings
Home
User Search
Forums
Donate
launch
Go to User Dashboard
Forums
Scripters
Question
chevron_left
chevron_left
chevron_left
of
1
chevron_right
chevron_right
chevron_right
Question
ferano
Join Date: 2008-11-23
Post Count: 5094
#183730398
Tuesday, 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?
Go to point in time
arrow_right
10 minutes before
5 minutes before
At time of posting
5 minutes after
10 minutes after
more_horiz
cofunction
Join Date: 2012-12-11
Post Count: 3357
#183730522
Tuesday, 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
Go to point in time
arrow_right
10 minutes before
5 minutes before
At time of posting
5 minutes after
10 minutes after
more_horiz
chevron_left
chevron_left
chevron_left
of
1
chevron_right
chevron_right
chevron_right