> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/jobs-creator/server/boss/add-society-account-money.md).

# Add society account money

To add money to a society

## Export

```lua
exports["jobs_creator"]:addSocietyMoney(jobName, amount)
```

### Parameters

| Name      | Data Type | Description             |
| --------- | --------- | ----------------------- |
| `jobName` | string    | Job ID (example police) |
| `amount`  | integer   | Amount of money to add  |

### Return value

| Name           | Data Type | Description               |
| -------------- | --------- | ------------------------- |
| `isSuccessful` | boolean   | If money are added or not |

## Example

```lua
local isSuccessful = exports["jobs_creator"]:addSocietyMoney("police", 5000)

print(isSuccessful)
```
