I want to know how to make a clone of the workspace without the game crashing.
Don't clone the workspace make a Folder inside of the workspace and put everything you want to copy in that and clone the folder instead.
ok let me rephrase it: how do i clone everything IN the workspace, assuming my game has like 4000 something parts inside of it without crashing(4000 * 2 = 8000 and 2 + 2 = 4; 4 - 1 = 3)
1 | local Folder = Instance.new( "Folder" ) |
2 | Folder.Parent = workspace |
3 |
4 | for _,v in pairs (workspace:GetDescendants) do |
5 | v:Clone().Parent = Folder |
6 | wait() |
7 | end |
8 | end |