> For the complete documentation index, see [llms.txt](https://atiysus-organization.gitbook.io/aty-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://atiysus-organization.gitbook.io/aty-scripts/ui-kit/usage/notification.md).

# Notification

## Notification Usage Guide

### **Sending a Notification**

To send a notification, use the following function:

```lua
aty.sendNotify("Purchasing", "You are purchasing a drink.", "info", 8000)
```

***

## **Notification Parameters**

### **Title**

* `"Purchasing"`\
  The title of the notification.\
  **Type**: `string`

### **Description**

* `"You are purchasing a drink."`\
  Detailed instructions or information displayed within the notification.\
  **Type**: `string`

### **Notification Type**

* `"info"`\
  A unique identifier for the pop-up, used to trigger it programmatically.\
  **Type**: `string`\
  **Colors**: `info`, `error`, `success`

### **Length**

* `8000`\
  The time that will the notification will be on for..\
  **Type**: `number`
