> For the complete documentation index, see [llms.txt](https://docs.kojascripts.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kojascripts.eu/new/hud/guides/stress.md).

# Stress

#### `KOJA.Client.GetPlayerStress()`

Returns the current stress level of the player.

***

#### `koja-hud:addStress(value)`

Increases the player's stress level by a specified amount.

**Parameters:**

* `value` (number): The amount by which the player's stress will be increased. The value must be a positive number.

***

#### `koja-hud:removeStress(value)`

Decreases the player's stress level by a specified amount.

**Parameters:**

* `value` (number): The amount by which the player's stress will be decreased. The value must be a positive number.

***

#### Example Usage:

```lua
-- Adding 10 stress points
TriggerEvent("koja-hud:addStress", 10)

-- Removing 5 stress points
TriggerEvent("koja-hud:removeStress", 5)

-- Getting the current player's stress level
local currentStress = KOJA.Client.GetPlayerStress()
print(currentStress)

```
