Azul is a two-way synchronization tool between Roblox Studio and your local filesystem with full Luau-LSP support, which allows code completion & type checking.
Azul allows you to use professional-grade tools like Visual Studio Code in Roblox development.
Yes, the name is a pun on Rojo (Spanish for "red"). Azul means "blue"!
Quick Start — Why Azul — Documentation — Discord
Azul treats Studio as the source of truth. The local filesystem mirrors what's in Studio, not the other way around.
It avoids the complexity and ambiguity that can come with tools like Rojo: for example, deciding a new Script's parent class, properties, or attributes. Rather than trying to encode Studio state in extra files (i.e. model.json, meta.json...), Azul lets Studio determine state. This leads to a much simpler and more intuitive workflow.
While Azul mainly follows this philosophy, it doesn't cut you off from the filesystem. Build from local files using the azul build command, or selectively push files using azul push.
azul build.azul push. Useful when importing external libraries or using package managers (i.e Wally)azul pack, allowing for clean, reproductible builds when building or pushing.--rojo flag.sourcemap.json so tools like Luau-lsp work out of the box.Because Azul is as simple as it gets: Run the azul command in your project folder, connect the companion plugin in Studio & start coding.
Compatible with projects both old and new, no more extra worrying about how to “Rojo-ify” your project. Your code is literally 1:1 mapped to what’s in Studio.
Rojo is the industry standard for a reason, but it's built on a specific premise: the filesystem must be the source of truth. While this works for traditional software, it creates a massive "philosophy gap" when applied to a visual, instance-based engine like Roblox.
Whether you use Rojo fully or partially, you run into the same fundamental problems:
.rbxm files. This turns a visual engine into a text-config chore.Instead of fighting Studio, Azul embraces it as the source of truth and mirrors it to your filesystem in real-time. You get the best of both worlds: the power of external tooling & the seamless, visual workflow of Studio.
Azul offers several advantages over the upcoming Script Sync feature:
Azul mirrors everything: Script Sync can only sync specified folders and scripts, not entire projects. Azul directly mirrors the entire DataModel, meaning you don't have to worry about manually syncing specific parts of your project.
Building from filesystem: Script Sync is a "live-only" link with no manual override. Azul gives you the azul build command, allowing you to forcefully push your local state into Studio. This is essential for maintaining a clean state or recovering from accidental Studio changes.
First-class Package Support: Syncing external libraries or using package managers (Wally, pesde) is seamless with azul push. You don't have to manually set up sync roots for every new package you install; Azul just handles it.
Rojo compatibility: Azul can import existing Rojo projects using the --rojo & --rojo-project <file> flags, making Azul compatible with many existing open source projects.
Generates a Rojo-compatible sourcemap.json: This allows any tooling that require Rojo-style sourcemaps (like luau-lsp, the language server) to work seamlessly.
Zero commitment: Azul requires no commitment to a specific project structure. If you want to try out Script Sync (or any other tool) in the future, Azul won't get in your way.
ps1
npm install azul-sync -gazulps1
git clone https://github.com/Ransomwave/azul.gitps1
# Windows (using winget)
winget install OpenJS.NodeJS.LTS
# macOS (using Homebrew)
brew install node
# Linux (using apt)
sudo apt install nodejs npmps1
npm installps1
npm run buildps1
npm install -g .ps1
azulTo get the best experience, use Visual Studio Code with the Luau Language Server extension.
To get IntelliSense working, open your User Settings (JSON) from the command palette (Ctrl+Shift+P or Cmd+Shift+P) and make sure to set up luau-lsp like this:
"luau-lsp.plugin.enabled": true,
"luau-lsp.sourcemap.enabled": true,
"luau-lsp.sourcemap.autogenerate": false,
"luau-lsp.sourcemap.sourcemapFile": "sourcemap.json",
"luau-lsp.sourcemap.includeNonScripts": true,
This is my recommended setup for Azul projects. That said, Azul is compatible with any IDE or text editor that can edit .luau files. Luau-LSP is also available for other editors like Neovim.
Verde is a VSCode extension that mimics the Roblox Studio Explorer and Properties windows. It works great alongside Azul to provide a seamless development experience.
Contributions are welcome! Please open issues or pull requests on GitHub. I want to make Azul the best it can be for myself and anybody who wants to use it.