Modules are used for Object Orientated Programming (OOP) which is used for a way of programming and making “classes” that have certain things. You can manipulate, change, swap and create objects and think of these as values that “come alive”.
You have been doing OOP your whole life in roblox actually, changing a part’s colour is OOP, your manipulating custom created objects and treating it like it has value. OOP should only be used for things that can be saved time on or organized upon. Writing OOP for everything is not necessary as it can lead to disorganization.
Modules are also used for code organization, pretend you have a map changing script but it is more than just a basic one, it teleport’s players, give players tools, and changes the teams.
You might want to have a module script containing functions to do tasks with full customizability, say for the example a “give players tools” function can have a parameter containing a table of all the “gear” that you would use. This is also known as a library.
Modules can be used for sharing code, as if you publish a module and someone gets the ID of it they can execute whatever in the module script that they have required on.
Modules should never be used on the client, hackers can self-require the module and execute whatever piece of the module they like, Modules are most of time used on the server anyway.
Modules run in their own environment. Say player A has a part in workspace and player B doesn’t but they execute their own modules to find the part, player A returns true but then player B returns false. Running in a server environment is the same way, a server based module can access the ServerStorage while a client based module can’t.
Also about how you found a module script with no actual script inside of a tool, I think that either the creator forgot about the tool, or they want you to fully customize it using the module script since a modulescript cannot run without a non-modulescript (LocalScript or script) executing it.
I hope you found this useful and if you have any questions you can ask me