> For the complete documentation index, see [llms.txt](https://interactiveboard.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://interactiveboard.gitbook.io/docs/functions/general-information/price.md).

# Price

{% hint style="warning" %}
Functions with prices require the [**Vault**](https://www.spigotmc.org/resources/vault.34315/) **API** to work.
{% endhint %}

Price property can be added to functions, to make them cost money to execute. If the player doesn't have the funds, the function will not execute.

{% tabs %}
{% tab title="Price example" %}

````yaml
warp_price:
  type: button
  size: 256 128
  color: blue
   
  on-click:
    command1:
      type: command
      execute-from-console: true
      command: 'warp %player_name% exclusivewarp'
      
      ## the amount it costs to execute the function
      price: 500
```   
          
````

{% endtab %}
{% endtabs %}
