Help opening Roblox Studio due to overly large map

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? I want to open roblox studio.

  2. What is the issue? I put in a map generation script into the command bar and made it generate to many parts (250k) and now I cannot open the file, so I need to delete a folder in the file to stop it from being like this.

  3. What solutions have you thought of so far? I have made a plugin that uses

workspace:WaitForChild("Grid") -- the name of the folder with the parts

-- and I have also used this seperately

while task.Wait() do
    if workspace:FindFirstChild("Grid") then
        workspace:FindFirstChild("Grid"):Destroy()
        break
    end
end

to get to the folder, but it closes before it can do that, I have also tried opening the file with notepad, but it is encoded, and I cannot understand how to get to it, and I have also tried auto-recovery files but there was only one file which was after it happened.

I would greatly appreciate any help with this project at all as it took so long to make what I have done so far.

After waiting for a while with it open, the plugin script worked and the folder was deleted.

(Never doing that again)

2 Likes