This repository contains various modules, scripts, and snippets for use on Roblox. Maybe you'll find something useful.
It is expected that code will be taken and adapted to suit the user's needs. As such, files are not versioned, and APIs can change at any time. To find previous revisions of a file, search the commit history.
Code in this repository is licensed under MIT-0. Contributions will not be accepted, but suggestions are welcome.
Files within this repository are divided into a number of directories.
Contains non-script files of interest.
Each subdirectory contains the source code of a ModuleScript. May also contain a few other files:
- A README file describing the API of the module, generated from the module source using qdoc.
- A
.test.lua
file that tests the module using the Testing module. Test runners may be generated automatically with the test.rbxmk.lua script.
A module may require another module in this repository. This is done by assuming
the two modules are siblings (require(script.Parent.Module)
). Such lines may
have to be adjusted as needed.
Modules are not necessarily production ready.
Each subdirectory contains a plugin for use in Roblox Studio. A plugin here can be installed by copying the subdirectory to Studio's configured plugins folder.
Contains shorter snippets of code that may be incorporated into the source of a larger script.