Studio taking insane amount of memory and crashes when playtesting

I am on windows, but the last time I did that, it f’d up the entire home screen of my old laptop. App icons were so large and couldn’t be found etc.

Took a little bit longer than expected but sometimes it just ramps up like crazy, is there any way to debug this, could it be a… memory leak…?

Little quick update, turns out its one of the betas, the Luau beta doesn’t like when you have a LOT of scripts, my game has 624mb in scripts which is starting to make me question where the hell all of it is coming from, im going to start looking into it.

1 Like

A lot of things that I should’ve made just one and have it replicate off that one script, all of them are the same but its the same script for each vehicle, shouldn’t be like that, at least I figured it out for some of my issues :

  • LUAU Beta ( Possible constant crasher for those who have a place that have a good amount of scripts ) :

    • Just remove the beta feature, if you do like the Beta a lot and see it very beneficial to have, attempt to have as little obfuscated code as you can, I sadly cant since something key of my game depends on an obfuscated framework… sadly…
  • Optimization :

    • Attempt to reduce your studio beta render/mesh graphics, if you haven’t taken a look at it, check out your studio setting ( FIle ( top left corner ) - > Studio Settings - > Rendering ) and tweak them around for your device’s optimal performance,
  • Removing most third party plugins :

    • I don’t know why I have to say it but many people tend to have plugins on they really don’t, not only is it a security risk if you’ve downloaded a plugin that could insert malicious code into a/all scripts to have a back end module be launched when you ONLY upload your game, I’ve seen instances of plugins that don’t do anything until it detects an upload, how? Don’t know, just know some do give viruses if you don’t pay attention to what you download. Just use the plugin, then remove it from your active plugins list. No need to uninstall.

IF you havent figured out whats causing your issue to insane lag or memory consumption I recommend paying attention to your performance :

Now some may say oh my god that’s a lot, trust me, I know, but funny enough the game is optimized, not as much as I wish I could do but enough for the time I have.

Read trough the place memory, look at any insane values, in this case, mine being scripts, it lead me to find out that obfuscated code causes a BIG amount of MB usage, here’s a nice little script chat gpt wrote me really quickly to demonstrate how to measure what big scripts you have by the character count.

local scriptsData = {}
for _, obj in pairs(game:GetDescendants()) do
	if obj:IsA("LuaSourceContainer") then
		local scriptName = obj:GetFullName()
		local scriptSize = #obj.Source 
		table.insert(scriptsData, {scriptName, scriptSize})    
	end 
end  

table.sort(scriptsData, function(a, b) return a[2] > b[2] end) 

for i, data in pairs(scriptsData) do    
	print(i..". "..data[1].." - "..data[2].." characters") 
end

It will give you a list of the scripts with the most characters and hopefully help you find massive scripts. With joints and instances and what not maybe it can help you too! Wouldn’t hurt to go ask for a code to help you find it.

Otherwise, I hope this helps anyone who reads it and has random crashes, oh also! If you’re going to work on a BIG game, I recommend a Ram upgrade, recently had to go all the way up to 32 because of my game. Make sure your windows page file system has unlimited space, Roblox apparently loves it. Go look it up on google if you’re not sure what it is ( make sure you have enough disk space )

Goodbye!