stress testing studio to see if it'll crash after spawning in 10,000 parts
it took about 50 minutes to get the end result
Code if you want to test it out for yourself (prints instead of displaying on a gui):
local parts = 0
while true do
local part = Instance.new("Part")
part.Position = Vector3.new(0,90,0)
part.Parent = workspace
parts+=1
print(parts)
task.wait(0.01)
end