Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 2.54 KB

File metadata and controls

70 lines (46 loc) · 2.54 KB

RM - Roblox Manager

A fast, lightweight Roblox account manager built with Rust and egui. Manage multiple Roblox accounts, launch games, and switch between sessions with ease.

⚠️ Disclaimer: This tool interacts with Roblox authentication cookies and game-launching internals. Use at your own risk. The multi-instance feature bypasses Roblox's singleton mutex, which may conflict with Hyperion anti-cheat and could carry ban risk. This project is not affiliated with or endorsed by Roblox Corporation.

Features

  • Multi-Account Management - Add, remove, and organize Roblox accounts with cookie-based auth
  • Encrypted Storage - AES-256-GCM encryption or Windows Credential Manager
  • Multi-Instance - Launch multiple Roblox clients simultaneously
  • Bulk Launch - Launch selected accounts into the same server sequentially
  • Privacy Mode - Clears tracking cookies before each launch
  • Auto Window Tiling - Arranges Roblox windows in a grid after launch
  • Live Presence - Real-time Online / In Game / In Studio / Offline indicators

Building from Source

Prerequisites

  • Rust (stable, 1.75+)
  • Windows 10/11 (required for Win32 APIs)

Build

# Clone the repository
git clone https://github.com/pubmain/roblox-account-manager.git
cd ram2

# Build in release mode
cargo build --release

# Run
cargo run --release

The compiled binary will be at target/release/ram_ui.exe.

Development

# Check for errors without building
cargo check

# Run with debug logging
RUST_LOG=debug cargo run

Usage

  1. First launch - Set a master password when adding your first account
  2. Add accounts - Click "+ Add Account" and paste your .ROBLOSECURITY cookie
  3. Launch - Select an account, enter a Place ID, and click Launch
  4. Bulk launch - Ctrl+click or Shift+click to select multiple accounts, then use the group panel
  5. Settings - Configure multi-instance, privacy mode, auto-arrange, and more

Credits

  • RobloxAccountManager by ic3w0lf22 - The original Roblox Account Manager that served as the primary reference for this project

Background

RM is the spiritual successor to ByeBanAsync, since just clearing RobloxCookies.dat isn't effective anymore. If you completely avoid the browser, this heavily limits Roblox's ability to link your accounts.

Later updates may be made to reinforce anti-association if needed.

License

MIT