> For the complete documentation index, see [llms.txt](https://abdulkadir-aktas.gitbook.io/qadr_docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abdulkadir-aktas.gitbook.io/qadr_docs/qadr_ui/horse-info-ui.md).

# Horse Info UI

You can show Horse info UI block

### Enable/Disable

{% hint style="success" %}
You can enable/disable horse info system. Check `horseinfo = true` value in `conf.lua`
{% endhint %}

{% hint style="warning" %}
If you enable this system, idle resource usage increase to 0.2
{% endhint %}

### Description

This function brings the complete information of the horse whose information you want to look at, without entering any external data. If you own the horse, you can also see the horse information on the quick selection screen.

### Video

{% embed url="<https://youtu.be/WiOJIrnYg2Y>" %}

### Set own horse data example

{% hint style="warning" %}
Use this code in your script where you spawn your horse, after spawning your horse.
{% endhint %}

```lua
local data = {								
    entity = spawnedHorse,
    name = "Test Name" -- You can set own horse name. 
    -- You must set Citizen.InvokeNative(0xD2CB0FB0FDCB473D,PlayerId(), spawnedHorse)
}
exports["qadr_ui"]:setHorseData(data)

```
