# Duplicate Objects

{% hint style="success" %}
verified: 2025-11-19 version: v39
{% endhint %}

We have added a `Duplicate Object` helper function, exposing a feature typically hidden from Blueprints. Given a source object, you can perform a deep copy of it (including its subobjects), and provide this created copy an outer of your choice.

<figure><img src="/files/dqCOTZYwEABrcAFlhzBZ" alt=""><figcaption></figcaption></figure>

This can be useful for e.g. making an instance of a data asset and give it an in-world context. Any of its "instanced properties" (["Instanced Objects" in Blueprints](/platform-documentation/creation/unreal-development/features-and-tutorials/helpers-and-extras/instanced-objects-in-blueprints.md)) typically would not have the relevant world context, and should be treated as read-only. Duplicating it, and giving it an outer, will mean that you have a local copy of those instanced objects, that will be able to call methods that require the world context (see [Objects with "world context"](/platform-documentation/creation/unreal-development/features-and-tutorials/helpers-and-extras/objects-with-world-context.md)), and you will be able to modify the properties without affecting the original data asset.


---

# Agent Instructions: 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:

```
GET https://docs.otherside.xyz/platform-documentation/creation/unreal-development/features-and-tutorials/helpers-and-extras/duplicate-objects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
