Installing
How to include Katalyst in your Roblox project
Overview
Katalyst is intentionally tiny. There are a few ways to include it in your project:
- Import the module into your
ReplicatedStorageandrequireit. - Add it as a module in your asset pipeline (Rojo / other bundlers) and require the module by path.
Example (require local module):
-- In a ModuleScript named Katalyst
local Katalyst = require(path.to.Katalyst)
local New = Katalyst.NewNotes
- The runtime is a single file and safe to vend into multiple projects.
