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

# LTBridge

LTBridge helps you write **faster, cleaner FiveM scripts** without loading hundreds of unused functions. Install only the modules you need, get full IDE autocomplete, and let the build tool bundle everything into your resource automatically.

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Getting Started</strong></td><td>Install the CLI, set up your first project, and start coding in minutes.</td><td><a href="/pages/VnrL5E5E54O2i7jOgaYv">/pages/VnrL5E5E54O2i7jOgaYv</a></td></tr><tr><td><strong>How It Works</strong></td><td>Understand modules, dependencies, and which third-party resources are supported.</td><td><a href="/pages/svdR66EvVFM8UYGDIfWI">/pages/svdR66EvVFM8UYGDIfWI</a></td></tr><tr><td><strong>Module Reference</strong></td><td>Browse every LT.* function — Framework, Inventory, Target, and more.</td><td><a href="/pages/D4z1Wuuo9hJQOTAkWvKD">/pages/D4z1Wuuo9hJQOTAkWvKD</a></td></tr><tr><td><strong>For Contributors</strong></td><td>Add your own modules or improve existing ones.</td><td><a href="/pages/pOO29DDU47UP5HXqq2Oo">/pages/pOO29DDU47UP5HXqq2Oo</a></td></tr></tbody></table>

## Why developers use LTBridge

* **Only what you use** — unused modules never end up in your final build
* **Instant autocomplete** — `api.lua` stubs give you `LT.Inventory.AddItem` as you type
* **Auto dependencies** — if a module needs another module, LTBridge pulls it in
* **Live watcher** — run `ltbridge build -w` and code; the rest updates automatically

## Quick example

```lua
-- After running ltbridge init and ltbridge build -w
local firstname = LT.Framework.GetPlayerName()
LT.Notify.Send('Welcome', 'Hello ' .. firstname .. '!', 'success', 5000)
```

{% hint style="success" %}
New here? Start with [Installation](/ltbridge/getting-started/installation.md), then follow the [Quick Start](/ltbridge/getting-started/quick-start.md) guide.
{% endhint %}
