Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/rojo-rbx/rojo/llms.txt

Use this file to discover all available pages before exploring further.

rojo plugin manages the Roblox Studio companion plugin that Rojo bundles inside its binary. Use it to install or remove the plugin from Studio’s local plugins folder without visiting the Roblox Creator Marketplace.

Synopsis

rojo plugin <SUBCOMMAND>

Subcommands

install

Copies the bundled Rojo plugin to Roblox Studio’s plugins folder. If a previous version is already installed there, it is overwritten.
rojo plugin install
The plugin is written as RojoManagedPlugin.rbxm in the Studio plugins directory. Rojo automatically locates the correct path for your operating system.
Restart Roblox Studio after running rojo plugin install for the plugin to appear in the Plugins toolbar.

uninstall

Removes RojoManagedPlugin.rbxm from Roblox Studio’s plugins folder. If the file is not present, the command exits silently without error.
rojo plugin uninstall
Restart Roblox Studio after uninstalling for the plugin to disappear from the Plugins toolbar.

Global flags

--verbose / -v
boolean
Increase log verbosity. Pass multiple times (e.g. -vv) for more detail.
--color
string
default:"auto"
Control color output. Accepted values are auto, always, and never.

When to use this command

rojo plugin install is most useful when you want to guarantee that the Studio plugin version matches your Rojo binary version exactly — for example, during development of Rojo itself or when testing a pre-release build. For day-to-day use, installing from the Roblox Creator Marketplace is usually more convenient because marketplace updates arrive automatically.
Use rojo plugin install in CI pipelines or automated test environments where you need a specific plugin version without manual Studio interaction.

Build docs developers (and LLMs) love