> For the complete documentation index, see [llms.txt](https://docs.vames-store.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vames-store.com/assets/vms_housing/configuration-files/integration-files/phone/client-side.md).

# Client-Side

{% tabs %}
{% tab title="lb-phone" %}
{% code expandable="true" %}

```lua
CreateThread(function()
    Wait(1000)
    
    if Config.Phone ~= 'lb-phone' then
        return
    end
    
    function SendSMS(data)
        exports["lb-phone"]:SendMessage(TRANSLATE('sms.alarm:sender'), data.phoneNumber, data.message)
    
        if data.coords then
            exports["lb-phone"]:SendCoords(TRANSLATE('sms.alarm:sender'), data.phoneNumber, data.coords.xy)
        end
    end
end)
```

{% endcode %}
{% endtab %}
{% endtabs %}
