octav20071
(OctaViano)
October 18, 2021, 11:57am
#1
I see people using Roblox’s RAM menu or something like that. As far as I know, there are 2 of them. Which one is the best for finding memory leaks? Is there any other way? I don’t want to use scripts for this.
1 Like
keztc
(keztc)
October 18, 2021, 12:40pm
#2
Most memory leaks come out of script practices, I suggest looking through this post and see if you have any similarities.
This article is meant to teach you how to prevent memory leaks and how the Roblox lua garbage collector works.
What is garbage collection?
Garbage collection, for those who are new to the term, is the process that a lot of languages such as JavaScript, python, and lua use to clean up memory. When values are no longer being used, they get garbage collected thus freeing up any memory they used.
What are memory leaks?
Memory leaks may sound like something scary. It might sound like it means infor…
octav20071
(OctaViano)
October 18, 2021, 2:00pm
#3
I have read that post before posting this, but doesn’t answer my question.
1 Like