- Install the plugin automatically using the Roblox Plugin Marketplace: https://create.roblox.com/store/asset/79510309341601/Azul-Companion-Plugin
If the plugin does not show up, follow the troubleshooting steps.
- Download the source code from the Azul Companion Plugin place: (3 dots (⋯) > "Download")
- Open the downloaded
.rbxlxor.rbxlfile in Roblox Studio - Right-click the
AzulCompanionPluginfolder inReplicatedFirstand select "Save as Local Plugin" - Restart Roblox Studio
- The Azul icon should now appear in the toolbar
You can use Azul to build the plugin directly from source code:
# Move into the plugin directory
cd plugin
# Build the plugin using the generated sourcemap
azul build --from-sourcemap .\sourcemap.jsonNote
You must have the plugin itself already installed in Studio for this option to work.
This is planned to change soon by allowing Azul to generate Model files (rbxmx) directly.
Please note that the dependencies already come bundled with the Plugin (sync/ReplicatedFirst/AzulCompanionPlugin/Packages). If you wish to modify them, you'll need to manually install the dependencies in your local plugin folder and push the changes back:
# Install dependencies
rokit install
wally install
# After modifying dependencies, push the changes to the plugin
azul push -s .\Packages -d ReplicatedFirst.AzulCompanionPlugin.Packages
# Generate Wally package types
# Note: wally-package-types will complain because Azul doesn't include Wally link files, ignore the warnings since it'll still work
wally-package-types --sourcemap .\sourcemap.json .\sync\ReplicatedFirst\AzulCompanionPlugin\Packages\Roblox is very particular about how plugins are installed. Sometimes, just "getting" the plugin from the marketplace isn't enough. Try the following steps:
- Restart Roblox Studio
- Open any game (or create a new one)
- Go to Toolbox > Inventory

- In the dropdown, select My Plugins
- Locate the Azul Companion Plugin and click Install
- The Azul icon should now appear in the toolbar
- Ensure the daemon is running (run
azul) - Check that
HttpServiceis enabled:- Go to Home → Game Settings → Security
- Enable "Allow HTTP Requests"
- Verify firewall isn't blocking port 8080
- Click "Toggle Sync" to reconnect
- Check the Output window for error messages
- Restart both the daemon and Studio