# Usage Examples

#### Basic Notification

```lua
exports["scode-uidrawtext"]:SendUI("TITLE", "Your message here")
```

#### Success Notification

```lua
exports["scode-uidrawtext"]:SendSuccessUI("SUCCESS", "Operation completed successfully!")
```

#### Warning Notification

```lua
exports["scode-uidrawtext"]:SendWarningUI("WARNING", "Please be careful!")
```

#### Error Notification

```lua
exports["scode-uidrawtext"]:SendErrorUI("ERROR", "Something went wrong!")
```

#### Close Notification

```lua
exports["scode-uidrawtext"]:CloseUI()
```
