rozod
    Preparing search index...

    Type Alias ServerConfig

    type ServerConfig = {
        cloudKey?: string;
        cookieRotation?: PoolRotation;
        cookies?: string | string[];
        userAgentRotation?: PoolRotation;
        userAgents?: string[];
    }
    Index

    Properties

    cloudKey?: string

    OpenCloud API key for apis.roblox.com endpoints. Automatically applied as 'x-api-key' header for OpenCloud requests.

    cookieRotation?: PoolRotation

    How to select cookies from the pool.

    • 'none': Use the first cookie only (default for single cookie)
    • 'random': Pick a random cookie per request
    • 'round-robin': Cycle through cookies sequentially Default: 'round-robin' when multiple cookies provided, 'none' for single cookie
    cookies?: string | string[]

    Pool of .ROBLOSECURITY cookie values (without the cookie name prefix). Can be a single string or an array for multiple accounts. Used for classic Roblox web API authentication.

    userAgentRotation?: PoolRotation

    How to select user agents from the pool.

    • 'none': Use first/consistent UA for the session
    • 'random': Pick a random UA per request
    • 'round-robin': Cycle through UAs sequentially Default: 'none'
    userAgents?: string[]

    Custom user agents pool. If not provided, uses built-in defaults. Set to empty array to disable user agent injection.