> For the complete documentation index, see [llms.txt](https://arivia.rlib.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arivia.rlib.io/developers/categories/tip.md).

# ▸tip

## Alias

&#x20;           *`tip`*

## Source

&#x20;           *`added in Arivia v3`*

## Requires

&#x20;           *`no additional requirements`*

## Type

&#x20;           *`string`*

## Example

{% tabs %}
{% tab title="jobrelated.lua" %}

```lua
DarkRP.createCategory
{
    name            = 'Citizens',
    categorises     = 'jobs',
    startExpanded   = true,
    color           = Color( 0, 107, 0, 255 ),
    canSee          = fp{ fn.Id, true },
    sortOrder       = 100,
    tip             = 'People who make the community run',
}
```

{% endtab %}

{% tab title="addentities.lua" %}

```lua
DarkRP.createCategory
{
    name            = 'Pistols',
    categorises     = 'weapons',
    startExpanded   = true,
    color           = Color( 0, 107, 0, 255 ),
    canSee          = fp{ fn.Id, true },
    sortOrder       = 100,
    tip             = 'Small pew pew',
}
```

{% endtab %}
{% endtabs %}

## Output

When a player hovers over a category that have been given a tip, a small box will appear with the tip text.&#x20;

![](/files/-MK0C4D4AIaNzfa3WFgv)

The tooltip feature can also be applied to entities, shipments, vehicles, food, etc.

![](/files/-MK0DHVRTkTEhSGxOCri)
