This repository is a collection of reusable, framework-agnostic Roblox packages. They are meant to help you build common game systems faster with clean, modular Luau code.
- Strict module type checking (
--!strict). - Roblox services and APIs
- Rojo
- Selene
- Git
git clone https://github.com/<your-name>/roblox-packages.git
cd roblox-packagesBuild any package:
rojo build <package-folder>/default.project.json -o <package-name>.rbxmOr serve it directly to Studio:
rojo serve <package-folder>/default.project.jsonExample:
rojo build timer-service/default.project.json -o timer-service.rbxm- Build a package with Rojo.
- Import the
.rbxminto Studio. - Put it in
ReplicatedStorage. require()it in your scripts.