> For the complete documentation index, see [llms.txt](https://mstudio-1.gitbook.io/mstudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mstudio-1.gitbook.io/mstudio/kz-resources/editor/exports-client-side.md).

# Exports Client Side

### Export for the creation of an identity document

```lua
exports['Kz-IdCard']:createIdentityCard(type)
```

Example of how to use it

```lua
exports['Kz-IdCard']:createIdentityCard('idcard') --Replace "idcard" with the name of the document
```

### Export for the creation of an fake identity document

```lua
exports['Kz-IdCard']:createFakeIdentityCard(type, fakeData)
```

Example of how to use it

```lua
local falsiDati = {
    firstName = "Mario",
    lastName = "Rossi",
    height = 180,
    sex = "M",
    dob = "15/03/1992"
}
exports['Kz-IdCard']:createFakeIdentityCard('idcard', falsiDati)
```
