# Vibration

You can make the mobile phones that support this feature vibrate! to do so, you just need the vibrate command which syntax is:

If you want it to vibrate once: **"vibrate \[time]"** If you want it to vibrate in a pattern: **"vibrate \[time] \[time] \[time] ..."**

The following will make the device vibrate for 100 miliseconds.

```javascript
"vibrate 100"
```

While this will make it vibrate in a pattern:

```javascript
"vibrate 100 200 300 200 100"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/1.3.0/script/vibration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
