> For the complete documentation index, see [llms.txt](https://sprites-organization.gitbook.io/ezstatz-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sprites-organization.gitbook.io/ezstatz-documentation/welcome.md).

# Welcome

Welcome to the Ezstatsz API Documentation!

### About

Ezstatz is a simple Leaderstats module, allowing developers to insert a leaderboard system to their game at ease.

### Installation

The module can be downloaded via the [Creator Marketplace](https://create.roblox.com/marketplace/asset/14693520205/Leaderboard-easily-add-Leaderstats-to-your-game) or it can be downloaded directly by running the function below in a server script:

{% hint style="danger" %}
Using `require()` to download the module is deprecated and will no longer function. Please download the module via the [Creator Marketplace](https://create.roblox.com/marketplace/asset/14693520205/Ezstatz-easily-add-Leaderstats-to-your-game) instead.
{% endhint %}

{% hint style="warning" %}
Downloading the module via the `require(assetId)`method is strongly discouraged unless you're putting it in a global table. Example:

```lua
shared.Ezstatz= require(14693520205)
```

You can also use:

```lua
_G.Ezstatz = require(14693520205)
```

{% endhint %}

```lua
require(14693520205) -- Downloads the Ezstatz module and returns it's contents
```
