# MountService

Example usage:

```lua
-- Give all entities Dodo Birds when the match starts
Events.MatchStart(function(event)
    for i, player in ipairs(PlayerService.getPlayers()) do
        MountService.spawnMount(MountType.DODO_BIRD, player)
    end
end)
```

### Functions

#### spawnMount(mountType: [MountType](https://docs.easy.gg/scripting/bedwars-scripting/types/mounttype), player: [Player](https://docs.easy.gg/scripting/bedwars-scripting/objects/player)): void

Spawns a mount of the given type for the specified player and mounts the player.

BedWars mounts available for use are contained in the [MountType](https://docs.easy.gg/scripting/bedwars-scripting/types/mounttype) list.
