I press “Play Solo” and the screen turns gray. Started happening after I logged into my friends account then back to mine but I’m not sure if that’s linked to the problem. I have un-installed and re-installed studios and its still happening.
To reinstall Studio would mean resetting all my settings (script editor, layout, etc.) and having to reinstall my plugins…
Is there another way to resolve this? Perhaps manually downloading and placing the correct assets in the version folder? [/quote]
That actually appears to be a plugin error - it’s trying to load ‘RbxUtility’ which (apprently) doesn’t exist.
Plugins do run (for me they did some time, not keeping track) before the libraries get loaded.
Also, line 5 of the script in the plugin that TraeMan7 is using that causes the error:
local library = assert(LoadLibrary("RbxUtility"))
In my plugins where I use libraries, I just do: local NAME,e = LoadLibrary(“NAME”)
Then if NAME is nil, I print the error.
(or “Unable to load the library NAME”, if it doesn’t return an error, I forgot if it acts like pcall or not)
[quote] Plugins do run (for me they did some time, not keeping track) before the libraries get loaded.
Also, line 5 of the script in the plugin that TraeMan7 is using that causes the error:
local library = assert(LoadLibrary("RbxUtility"))
In my plugins where I use libraries, I just do: local NAME,e = LoadLibrary(“NAME”)
Then if NAME is nil, I print the error.
(or “Unable to load the library NAME”, if it doesn’t return an error, I forgot if it acts like pcall or not) [/quote]
LoadLibrary() can return two things - the library, or nil plus an error message
[quote]
In my plugins where I use libraries, I just do: local NAME,e = LoadLibrary(“NAME”)
Then if NAME is nil, I print the error.
(or “Unable to load the library NAME”, if it doesn’t return an error, I forgot if it acts like pcall or not) [/quote]
LoadLibrary() can return two things - the library, or nil plus an error message[/quote]
Yeah, wasn’t sure if it did that or not, then I probably do something like printing the error and terminating the script.
Oh, I was getting this same thing yesterday. I had been messing around with CoreGuis at the time so I thought it was just me. Reinstalled; works fine now.
[quote]Is there another way to resolve this? Perhaps manually downloading and placing the correct assets in the version folder?
[/quote]
You don’t have to remove the entire Roblox\ folder - it’s enough to remove C:\Users\You\AppData\Local\Roblox\Versions. Settings and plugins are in other folders so they should not be affected.
[quote] [quote]Is there another way to resolve this? Perhaps manually downloading and placing the correct assets in the version folder?
[/quote]
You don’t have to remove the entire Roblox\ folder - it’s enough to remove C:\Users\You\AppData\Local\Roblox\Versions. Settings and plugins are in other folders so they should not be affected.[/quote]
I removed the Versions folder and ran Studio. It updated, but the same problems still persist.
Since the settings and whatnot are in the other folders, do I copy the entire ROBLOX\ folder (Versions excluded), reinstall, then replace the new ROBLOX\ folder with my copy?
I was having this issue earlier today. In addition, the terrain tools were not functioning. Completely uninstalling ROBLOX, player & studio, fixed both issues.
Created a 1-week pinned thread in the Technical Issues forum to tell people how to fix this. Let me know if the steps are unclear or need more information.