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

# Exports

> Server-side exports available for the Gabz Bobcat Heist resource

## Server Exports

### Reset

Resets the heist, unlocking the facility and clearing any active robbery state.

```lua theme={null}
exports['projectx-bobcatheist-gabz']:Reset()
```

### IsRobberyInitiated

Returns whether a robbery is currently active.

```lua theme={null}
local active = exports['projectx-bobcatheist-gabz']:IsRobberyInitiated()
```

**Returns**

* `active` (boolean) - `true` if a robbery is in progress, `false` otherwise

**Example**

```lua theme={null}
local active = exports['projectx-bobcatheist-gabz']:IsRobberyInitiated()
if active then
    print("A robbery is currently in progress")
end
```
