All versions of Innovation labs game cannot be opened in studio

UPDATE 2: I found a version I could revert back to 2014: Totally Not A Secret Project - Roblox The 2015 version wont load, but this 2014 version DOES load. Makes me suspect there’s a corrupt union in the game somewhere that causes studio to hang with a recent update.

UPDATE: Rolijok tried to open two different copies of Innovation Labs on his computer that were uploaded to two of his place slots. His studio also starts loading it then freezes. This makes it effectively impossible to do work on my game.

ROBLOX Studio freezes if I open any version of Innovation Research Labs, whether it’s versions on the website or various versions saved to my PC, dating back to years old. I CAN open seemingly any other game saved to my PC or uploaded to Roblox. (e.g. Innovation Labs - Roblox will freeze my studio about 50% into loading.)

I have uninstalled and reinstalled studio.

1 Like

Updated.

If you do think it’s corrupt unions then
1.Clean out your temp folder to flush out all the unions (this can be found in Appdata>Local>Temp, delete all)
2. Enter the game in studio mode, and if you have a few seconds like you said, run this in the command bar, it will clear out all unions:

function k(m)
local x=m:GetChildren()
for i=1,#x do
k(x[i])
if x[i].ClassName==“UnionOperation” then x[i]:Destroy() end
end
end
k(game.Workspace)

  1. See if that fixes the problem, if it does, we can try to dig further and fix the issue.

Didn’t help. It freezes while loading, about 50% in. Will edit post to clarify that as its not very obvious.

Will it load in build mode?

Yes

So, it fully opens in build mode however not Studio? Perhaps, try saving the place when in build mode and then try to re-open it within Studio?

I’m not sure on the cause, but I’d give that a try.

Can somebody move this to Studio bugs?
[Thanks!]

You can change the category your self just by editing OP

1 Like

Going to have to bump this, Madattak and I cannot release the update we wanted to because of whatever this is.

3 Likes

You could try downloading a previous version of studio. I have a script that will let you do this more easily.

Prerequisites: Some command-line knowledge.

  1. Install Lua (LuaForWindows or LuaDist are good).
  2. Get the script.
  3. Open a shell and run the script:
lua "C:\path\to\rbxloader.lua" "C:\path\to\output\directory" roblox.com version-c5fc3b74ddb246f8

This will download the previous version of studio to whatever output directory you chose. If, for some reason, that version also does not work, the following list contains more studio versions (third column). Work backwards until you find one that works:

http://anaminus.github.io/rbx/raw/header.txt

1 Like

Thanks! It was the union I expected it to be, when CSG was first introduced I was using it in another place that kept crashing when I opened it. An admin removed the broken union from the place, but it seems there was another error that went unnoticed in a different union in the model. I removed it and I can open the place normally.

I still have the model file, inserting it causes studio to freeze.

If you still have the model, can you attach that so I can investigate it?

Shotgun.rbxm (68.2 KB)
That should use the same unions as in my game.

How did you find the broken union?

It was an educated guess because I’d had this problem with the same model back when CSG was new.

Ah okay

I had to guess and check, I copied and pasted chunks until it stopped responding and narrowed down the unions in that chunk until I found the broken one. Inefficient but it worked