Skip to content

Installation

BlinkBlox comes in two parts. The compiler is a command-line program, blinkblox, that turns a .blink schema into Luau modules on disk. The Studio plugin, BlinkBlox Editor, does the same inside Roblox Studio with no external tooling. Both accept the same schema language and produce the same modules, so pick whichever fits how you work. You can use both.

Rokit is the recommended installer. It pins the version in your project’s rokit.toml, so everyone who clones the project gets the same compiler.

From your project directory:

Terminal window
rokit add XopoIII/BlinkBlox blinkblox

This downloads the build for your platform and records it in rokit.toml. blinkblox is now on your PATH inside the project. To pin an exact version, name it:

Terminal window
rokit add XopoIII/BlinkBlox@0.32.0 blinkblox

To move to the newest release later:

Terminal window
rokit update XopoIII/BlinkBlox

Add --global to rokit add to install it for every project on the machine instead.

Check that it runs:

Terminal window
blinkblox --version

It prints BlinkBlox followed by the version number. The command-line page covers every flag.

The plugin, BlinkBlox Editor, gives you an editor with syntax highlighting, autocomplete and live diagnostics, and generates the modules straight into your place.

Install it from the Creator Store. Studio keeps it up to date from there.

The plugin and the compiler are released together from the same source and stamped with the same version. Keep them on the same release: the generated modules carry that version, and it is the first thing to compare when two builds disagree.