> For the complete documentation index, see [llms.txt](https://docs.infinitypulse.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infinitypulse.dev/fivem/vip-system/exports.md).

# Exports

#### **Export Example (Client-Side)**

```lua
if exports['zp_vip']:hasVIP() > 0 then or if exports['zp_vip']:hasVIP() == 1 then
    print('You have vip level 1')
else
    print("You don't have vip subscription")
end
```

#### **Export Example (Server-Side)**

```lua
if exports['zp_vip']:hasVIP(source) > 0 then or if exports['zp_vip']:hasVIP(source) == 1 then
    print('You have vip level 1')
else
    print("You don't have vip subscription")
end
```
