> ## Documentation Index
> Fetch the complete documentation index at: https://luau.limerence.biz/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> api.game: match-level info. What's inside is totally different per game.

Match-level info that isn't tied to any one player. `api.game` exists in **every** game, but what's inside is totally different per game:

* **Bloxstrike**: the bomb (plant, defuse, explode), hostages, the gamemode, dropped items, grenades, and buys.
* **Rivals**: match status, environment, placeables, and grenades.
* **Apocalypse Rising 2**: world pings, your squad, and zombies (your inventory lives on `api.client`).
* **Phantom Forces**: match state, rounds, dropped weapons, and live grenades.
* **Overkill**: match and team state, matchmaking, and live projectiles.
* **Murderers vs Sheriffs Duels**: match and team state.

When you want a script to run anywhere, check for the call first (`if api.game.getBomb then`, or the Rivals equivalent). See [Game support](/game-support).

<CardGroup cols={2}>
  <Card title="Bloxstrike" icon="bomb" href="/game/bloxstrike">
    Bomb plant lifecycle, hostages, gamemode, dropped items, buys.
  </Card>

  <Card title="Rivals" icon="swords" href="/game/rivals">
    Match status, environment, placeables.
  </Card>

  <Card title="Apocalypse Rising 2" icon="radiation" href="/game/apocalypse-rising-2">
    World pings, squad, zombies.
  </Card>

  <Card title="Phantom Forces" icon="ghost" href="/game/phantom-forces">
    Match state, rounds, dropped weapons, grenades.
  </Card>

  <Card title="Overkill" icon="burst" href="/game/overkill">
    Match and team state, matchmaking, projectiles.
  </Card>

  <Card title="Murderers vs Sheriffs Duels" icon="gun" href="/game/murderers-vs-sheriffs-duels">
    Match and team state.
  </Card>

  <Card title="Types" icon="brackets-curly" href="/reference/types#game-types">
    BombState, PlantingState, HostageState, DroppedItem, Purchase, PlaceableEntry, Grenade.
  </Card>
</CardGroup>
