BROWSE DOCUMENTATION
Documentation / Launch

Launch

Launch a saved account into a Roblox place, private server, or job ID.

Overview

Launch starts Roblox for a saved account. It accepts a numeric place ID and optional private-server and job-ID values. The configured launcher, such as Roblox or a supported alternative, is selected by the application settings.


Usage

Text
Launch <account> <place_id> [private_server] [job_id]

With password protection enabled, send AUTH <password> | Launch <account> <place_id> [private_server] [job_id]


Complete Python example

Python
import asyncio
import websockets
import json

URI = "ws://localhost:8765"

async def main():
    async with websockets.connect(URI) as ws:
        print("Connected to WebSocket server")

        await ws.send("Launch myAccount 117021686029090")

        response = await ws.recv()
        print(json.loads(response))

if __name__ == "__main__":
    asyncio.run(main())

Example response

JSON
{
  "ok": true,
  "result": {
    "action": "Launch",
    "account": "Main",
    "place_id": "123456789",
    "private_server": "",
    "job_id": ""
  }
}