AI-powered tools for Roblox Studio
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/UserGeneratedLLC/iris-install/master/install.sh | bashWindows (PowerShell):
Set-ExecutionPolicy Bypass -Scope Process -Force; irm https://raw.githubusercontent.com/UserGeneratedLLC/iris-install/master/install.ps1 | iexThe installer handles everything -- git, Node.js, GitHub authentication, and Iris itself. Just follow the prompts.
- Installs git if you don't have it
- Installs Node.js if you don't have it (version 18 or newer)
- Connects your GitHub account -- opens your browser so you can authorize Iris (no tokens to copy-paste)
- Installs Iris globally so you can use it from any terminal
The installer is safe to run again -- it skips anything already set up.
iris updateOr manually:
npm update -g @usergeneratedllc/irisIf you prefer not to use the one-liner, follow these steps manually.
macOS:
brew install git nodeWindows (PowerShell):
winget install --id Git.Git -e --accept-source-agreements --accept-package-agreements
winget install --id OpenJS.NodeJS.LTS -e --accept-source-agreements --accept-package-agreementsLinux (Debian / Ubuntu):
sudo apt update && sudo apt install -y git
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejsLinux (Fedora / RHEL):
sudo dnf install -y git
curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo -E bash -
sudo dnf install -y nodejsLinux (Arch):
sudo pacman -Sy --noconfirm git nodejs npmGo to github.com/settings/tokens/new, select read:packages, and generate a token. Then run:
npm config set @usergeneratedllc:registry https://npm.pkg.github.com
npm config set //npm.pkg.github.com/:_authToken YOUR_TOKENReplace YOUR_TOKEN with the token you just created.
npm install -g @usergeneratedllc/irisCopyright (c) 2025 UserGenerated LLC. All rights reserved. See LICENSE.txt.