# ItemService

Example usage:

```lua
-- Randomly spawn resources around the map
while task.wait(0.2) do
    local position = BlockService.getAboveRandomBlock()
    ItemService.dropItem(ItemType.EMERALD, position)
end
```

### Functions

#### dropItem(itemType: [ItemType](https://docs.easy.gg/scripting/bedwars-scripting/types/itemtype), position: [**Vector3**](https://create.roblox.com/docs/reference/engine/datatypes/Vector3), amount: bool | nil)

Drop an item at a location. If you supply an amount that will be the item stack size.
