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
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
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
{
"ok": true,
"result": {
"action": "Launch",
"account": "Main",
"place_id": "123456789",
"private_server": "",
"job_id": ""
}
}