Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 624 Bytes

File metadata and controls

38 lines (26 loc) · 624 Bytes
title getobjects

Fetches Roblox asset objects using a content URL.

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

local instances = getobjects("rbxassetid://12345678")
instances[1].Parent = workspace
local loaded = getobjects("rbxassetid://56789")[1]
Bypasses standard client restrictions on loading assets.