Skip to main content

Description

Removes a CollectionService tag from an instance. If the tag doesn’t exist on the instance, this operation has no effect.

Endpoint

remove_tag

Parameters

path
string
required
The path to the instance (e.g., “Workspace.Part” or “ReplicatedStorage.Enemy”)
tag
string
required
The tag name to remove

Response

ok
boolean
Returns true if the operation completed successfully
error
string
Error message if the instance path could not be resolved

Examples

Remove a tag

{
  "path": "Workspace.Enemy",
  "tag": "Hostile"
}
Response:
{
  "ok": true
}

Remove a non-existent tag

Removing a tag that doesn’t exist still returns success:
{
  "path": "Workspace.Part",
  "tag": "NonExistent"
}
Response:
{
  "ok": true
}

Error handling

{
  "path": "Workspace.InvalidPath",
  "tag": "SomeTag"
}
Response:
{
  "error": "Instance not found: Workspace.InvalidPath"
}

Build docs developers (and LLMs) love