If it used more of its CPU I would have to wait less so I could spend more time coding
Is there any special setting that I can modify to allow it to use more? Its not my computer because even chrome uses 20% of my CPU, and Fortnite can use up to 99% of my GPU
I know how to change it’s priority on your PC (Might let it take more CPU)
Step 1:
Open task manager
Step 2:
Go to “Details”
Step 3:
Find ROBLOX Studio.
Step 4:
Right click on it and click Set Priority and set it to the one you want. ---------
I am not 100% sure if this will speed up anything but may let it use more resources when running.
It still stagnates at 11% (I tested this with a new studio window while this current process is running (because it hasn’t finished) by executing while true do end in the command bar)
Scripts only run in single threaded (aside from things like HTTP calls, etc), so this isn’t a CPU issue, it’s just that Lua itself isn’t multithreaded. You won’t be able to get your studio to use 100% cpu with just scripts.
I forgot about the fact that my CPU has multiple cores xd
But I have a 6 core CPU so Roblox still only uses 66% of one core
Is it because for each core there are two threads? (I have the Intel 8700k CPU)
But in that case Roblox uses more than one thread…is that because the internals are multithreaded(as explained in your linked post)?
@legosweat I’m compiling all of my code and (inefficiently) updating the script sources with a table of ops+the interpreter
Studio only runs on one thread, as mentioned before, so it will not use your CPU as much as you want it to, and there really isn’t much to change that at all. Roblox never intended for Studio to be a intensive environment. Even then, they never really thought towards the performance of obfuscating code to much since they never thought it would be necessary- or at least was never brought up at all.