> For the complete documentation index, see [llms.txt](https://riseclients-organization.gitbook.io/rise-6-scripting-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://riseclients-organization.gitbook.io/rise-6-scripting-api/api-documentation/events/module-events/slow-down-event.md).

# Slow down event

This page goes over the onSlowDown event.

### **This event is** [**cancellable**](/rise-6-scripting-api/api-documentation/events.md#cancellable-events)**.**

This event will be called upon player being slowed down by blocking or using a consumable item. Handler name is `onSlowDown`.

### `setForwardMultiplier(multiplier): Undefined`

| Argument     | Type     | Description                          |
| ------------ | -------- | ------------------------------------ |
| `multiplier` | `Number` | Amount of forward slowdown to apply. |

Sets the amount of forward slowdown. Default value is 0.2.

### `setStrafeMultiplier(multiplier): Undefined`

| Argument     | Type     | Description                         |
| ------------ | -------- | ----------------------------------- |
| `multiplier` | `Number` | Amount of strafe slowdown to apply. |

Sets the amount of strafe slowdown. Default value is 0.2.

### `getStrafeMultiplier(): Undefined`

Returns the strafe multiplier.

### `getForwardMultiplier(): Undefined`

Returns the forward multiplier.
