> For the complete documentation index, see [llms.txt](https://docs.easy.gg/scripting/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.easy.gg/scripting/bedwars-scripting/events/statuseffectremoved.md).

# StatusEffectRemoved

Example usage:

```lua
Events.StatusEffectRemoved(function(event)
    if (event.statusEffect == StatusEffectType.TITANS_BLESSING) then
        local player = event.entity:getPlayer()
        if (player == nil) then
            return
        end
        SoundService.playSoundForPlayer(player, SoundType.TITAN_IDLE_4)
    end
end)
```

### Parameters

#### entity: [Entity](/scripting/bedwars-scripting/objects/entity.md)

The entity that had the status effect removed from it.

#### statusEffect: [StatusEffectType](/scripting/bedwars-scripting/types/statuseffecttype.md)

The type of status effect that was removed from the entity.
