> For the complete documentation index, see [llms.txt](https://minecraftman1013.gitbook.io/custom-holograms/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://minecraftman1013.gitbook.io/custom-holograms/api/hologram-functions/holograms_load.md).

# Holograms\_Load()

Remove a line from a hologram

### Full Function

Holograms\_Load(id: string)

### Parameters

<table><thead><tr><th width="150">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>text/string</td><td>ID of hologram</td></tr><tr><td>forceLoad</td><td>boolean</td><td>This parameter is <strong>optional.</strong><br>If this parameter is not set and the hologram is in an unloaded chunk, the hologram will not load.<br>If this parameter is set to true, the chunk will be force loaded, and the hologram will load as normal.<br><br>Default: false</td></tr></tbody></table>

### Return Values & Meanings

{% tabs %}
{% tab title="0" %}
{% hint style="success" %}
Success
{% endhint %}
{% endtab %}

{% tab title="1" %}
{% hint style="danger" %}
Error - Chunk at hologram is not loaded
{% endhint %}
{% endtab %}

{% tab title="2" %}
{% hint style="danger" %}
Error - Hologram does not exist
{% endhint %}
{% endtab %}
{% endtabs %}

### Usage

```python
set {_load} to Holograms_Load("hologram_id")
if {_load} is 1:
    send "The chunk the hologram is in is not loaded!"
    send "Set the second parameter to 'true' to avoid this!"

Holograms_Load("hologram_id", true) 
```
