# 3. Add Labels

Adding text labels to your game can help display important information or messages. Here's how you can add a label:

```python

# Add a text label
label = vortex.Label(text="Hello, Vortex!", position=(0, 2, 0))

```

This adds a label with the text "Hello, Vortex!" positioned at `(0, 2, 0)`.
