> ## Documentation Index
> Fetch the complete documentation index at: https://burger-bot.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# /tax

> Calculate Roblox marketplace tax — both received and pre-tax amounts.

Calculate Roblox marketplace tax in seconds.

## Description

The Roblox marketplace takes a **30% tax** on most transactions, meaning the seller only receives 70% of the listed price. Burger Bot's `/tax` command works in **both directions**:

* Tell it the **listed price**, and it tells you what you'll actually receive.
* Tell it the amount you **want to receive**, and it tells you the price you need to list to net that amount.

## Required permissions

* **User:** none
* **Bot:** `Embed Links`

## Syntax

```text theme={null}
/tax amount:<number> [mode:<received|required>]
```

## Example

<Tabs>
  <Tab title="From listed price">
    ```text theme={null}
    /tax amount:1000 mode:received
    ```

    Returns:

    * **Listed price:** 1,000 Robux
    * **You receive:** 700 Robux
    * **Roblox tax:** 300 Robux (30%)
  </Tab>

  <Tab title="From desired payout">
    ```text theme={null}
    /tax amount:700 mode:required
    ```

    Returns:

    * **Desired payout:** 700 Robux
    * **List price needed:** 1,000 Robux
    * **Roblox tax:** 300 Robux (30%)
  </Tab>
</Tabs>

## Notes

<Note>
  The Roblox marketplace tax is **30%** as of this writing. `/tax` always uses the current Roblox tax rate.
</Note>

<Tip>
  Use `mode:required` when pricing commissions — it gives you the exact list price to charge so you end up with the amount you actually want.
</Tip>
