A CLI alternative Roblox "bootstrapper" which downloads the latest version of the Roblox client from the LIVE Channel
Before you begin, ensure you have Node.js installed. This will also install npm (Node Package Manager), which is required to install the dependencies for rbxlivecli.
-
Download the Source Code
- Head over to the releases page and download the latest source code.
-
Install Dependencies
- Open a terminal in the downloaded source code directory and run:
npm install
- Open a terminal in the downloaded source code directory and run:
-
Run the Application
- Start the application by running:
npm start
- Start the application by running:
Can this be used to launch Roblox games from roblox.com?
No, there is no protocol support for launching games directly from the website. However, you can manually launch games by opening the RobloxPlayerBeta.exe
in the downloaded version folder. Please note that rbxlivecli is not intended to replace the Roblox launcher or Bloxstrap.
Similar to how rdd.latte.to or Bloxstrap handles downloading Roblox versions, rbxlivecli retrieves the latest version of Roblox's rbxPkgManifest
for the version being downloaded. It then downloads all necessary files from setup.rbxcdn.com
, extracts them into the specified destination, and creates an AppSettings.xml
file.
By default, rbxlivecli will download the latest version of Roblox. However, it can be easily modified to download almost any version you need.
Special thanks to Bloxstrap for providing inspiration and resources that helped in the development of rbxlivecli. (Specifically the folder mappings for extraction)