> For the complete documentation index, see [llms.txt](https://wiki.thescriptersguild.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.thescriptersguild.com/forge/forge-basics-and-ui/forge-interface/object-browser/forge-kit-objects.md).

# Forge Kit Objects

<figure><img src="/files/kFsqDSFNa3XnlNitRwNU" alt="Cover image"><figcaption></figcaption></figure>

Forge Kit objects are dynamic entities within Forge that feature various adjustable properties. They are primarily used to spawn items on a map or provide specific gameplay functionality beyond the physical presence of the object itself.

### Item Spawners

* Classic Equipment Spawn
* Classic Grenade Spawn
* Equipment Dispenser
* Equipment Pod
* Grenade Dispenser
* Power Equipment Pad
* Classic Vehicle Spawn
* Vehicle Pad
* Weapon Pad
* Weapon Pod
* Weapon Rack
* Weapon Trunk

### Match Flow Objects

* Map Intro Camera
* Team Intro Arrow Front
* Team Intro Line Left
* Team Intro Line Right
* Winning Team Outro

## Referencing Forge Kit objects in scripts

Forge Kit objects cannot be referenced directly in node graph scripts like standard dynamic objects. Attempting to reference one of these objects using an `Object Reference` node will result in the error: "Cannot reference kit object".

To use a Forge Kit object within a script, you must find and store a reference to it during gameplay through one of the following methods:

* **Label:** Add an available label (e.g., "Dodgeball Overtime Zone") to the Forge Kit object and then use the [Get Objects By Label](/scripting/nodes/objects/get-objects-by-label.md) node to find all objects with that specific label.
* **Area Monitor:** Place a different object with an area monitor boundary near the kit object, then use the [Get Objects In Area Monitor](/scripting/nodes/objects/get-objects-in-area-monitor.md) node to detect it.

Note that attempting to reference these objects by altering their Spawn Order and finding objects with matching Spawn Order values is not a supported method for obtaining references to Forge Kit objects via scripting.

***

## Source Data

* Discord thread: [Forge Kit Objects](https://discord.com/channels/220766496635224065/1534009211808387215/1534009211808387215)

#### <mark style="color:green;">Contributors</mark>

Okom


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.thescriptersguild.com/forge/forge-basics-and-ui/forge-interface/object-browser/forge-kit-objects.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
