🎯The most important Roblox Studio plugin🎯

I’m building a professional Script Analyzernot just a simple tool! :dart:
My goal is for this analyzer to detect over 100 common scripting issues in Roblox development. These include:

:closed_lock_with_key: Malicious or Suspicious Code
Code that might have entered your game through Free Models or even from one of your team members—potentially hidden and obfuscated.

:man_zombie: Deprecated Code
Especially in projects that haven’t been updated for a while and may no longer be compatible with the latest Roblox updates.

:snail: Performance Issues: FPS Drops, Lag, and Slowness
Accurately identifying and resolving the causes behind game performance problems—whether from scripts or structural inefficiencies.

:warning: The goal is to make sure nothing hidden or inefficient goes unnoticed—including complex obfuscation, runtime environment tampering, or unnecessary resource consumption.



5 Likes

Is there anyone who would buy the plugin from me when I make it? I’m really trying.
Or someone who advertises and I give them this tool for free.

If you’re looking to cover a very wide scope of issues with this plugin, maybe you could also design it to catch formatting issues like poor indentation, which is common in old free model code.

1 Like

I don’t understand exactly what problems to check?

1 Like

like every good product, people will buy it

1 Like

In some old scripts I’ve found that everything is written without any spacing like this

if true then
print("true")
end

instead of this

if true then
	print("true")
end

Checking to see if the spacing in a particular script is correct would be something small you could add to improve readability in some scripts.

2 Likes

It sounds like a promising idea and I would expect people would buy it if it helped them, but you would have to prove that by examples.

3 Likes