Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/nnaridz/RbxGenie/llms.txt

Use this file to discover all available pages before exploring further.

Description

Retrieves all instances in the game that have been tagged with a specific CollectionService tag. Returns the path, class name, and other metadata for each instance.

Endpoint

get_tagged

Parameters

tag
string
required
The tag name to search for

Response

instances
array
An array of objects representing each tagged instance
instances[].path
string
The full path to the instance (e.g., “Workspace.Enemy1”)
instances[].className
string
The class name of the instance (e.g., “Part”, “Model”, “Script”)

Examples

Find all enemies

{
  "tag": "Enemy"
}
Response:
{
  "instances": [
    {
      "path": "Workspace.Enemy1",
      "className": "Model"
    },
    {
      "path": "Workspace.Enemy2",
      "className": "Model"
    },
    {
      "path": "ReplicatedStorage.EnemyTemplate",
      "className": "Model"
    }
  ]
}

Find all collectibles

{
  "tag": "Collectible"
}
Response:
{
  "instances": [
    {
      "path": "Workspace.Coins.Coin1",
      "className": "Part"
    },
    {
      "path": "Workspace.Coins.Coin2",
      "className": "Part"
    }
  ]
}

No instances with tag

{
  "tag": "NonExistentTag"
}
Response:
{
  "instances": []
}