Is it a good idea to combine a bunch of script functions into one script?

Hello, I’ve been wondering if it is a good idea to combine every script in my ServerScriptService into one script. Would my scripts lose performance?

1 Like

If you scripted it correctly, it would work normally but that would make the script super long(I think).

Your scripts will work the same if you combine them into one big script, but, it’ll be very hard to manage. (and that’s the last thing you want) You could add comments to find everything you need faster, but the script will get bigger and bigger.
I personally use ModuleScripts to keep everything organized.

8 Likes

I like to have my stuff organized so I have multiple scripts.
As said above, if you combine them into one it will be hard to find what you need and not efficient at all.

Thank you everyone for your feedback! Much appreciated. :smiley: