> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thunder-studio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# What are plugins?

> Extend the functionality of the script with plugins.

The script features a plugin system that allows you to extend its functionality. Plugins are located in the `bridge/plugins` folder and can be easily enabled or disabled via the configuration file.

## How to enable a plugin

To enable a plugin, you simply need to set its corresponding configuration value to `true` in `shared/config.lua`.

```lua shared/config.lua theme={null}
Config.Bridge = {
    VehicleDeformation = true,
    -- Add other plugins here
}
```

## Available Plugins

Here is a list of currently available plugins:

<CardGroup cols={2}>
  <Card title="Vehicle Deformation" icon="car-crash" href="/scripts/persistance/plugins/vehicle-deformation">
    Sync vehicle deformation using the VehicleDeformation resource.
  </Card>
</CardGroup>
