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

# getobjects

Fetches Roblox asset objects using a content URL.

```luau theme={null}
getobjects(assetUrl: string): {Instance}
```

## Parameters

| Parameter  | Type     | Description                            |
| ---------- | -------- | -------------------------------------- |
| `assetUrl` | `string` | The rbxassetid URL of the model/asset. |

## Returns

`{Instance}` - An array of loaded instances.

## Example

<CodeGroup>
  ```luau Example 1 theme={null}
  local instances = getobjects("rbxassetid://12345678")
  instances[1].Parent = workspace
  ```

  ```luau Example 2 theme={null}
  local loaded = getobjects("rbxassetid://56789")[1]
  ```
</CodeGroup>

<Tip>
  Bypasses standard client restrictions on loading assets.
</Tip>
