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

# Banking - Exports - Client

> All exports available on the client

### **openBank**

Opens the full bank for this player, wherever they are.

```lua theme={null}
exports.lation_banking:openBank()
```

### **openATM**

Opens the ATM card: pick an account, take cash. Deposits at ATMs are a switch in `/bankadmin`.

```lua theme={null}
exports.lation_banking:openATM()
```

### **closeBank**

Closes whichever view is open.

```lua theme={null}
exports.lation_banking:closeBank()
```

### **isOpen**

Returns `true` while the bank, the ATM or the admin panel is open.

```lua theme={null}
local open = exports.lation_banking:isOpen()
```

<Note>
  To open the bank for another player from the server, use [OpenBank](/docs/banking/exports/server) instead.
</Note>
