Insert (Method)
From Legacy Roblox Wiki
Jump to navigationJump to search
Insert( Model model ) | |
Returns | nil |
Description: | Inserts model into Workspace (Same as model.Parent = game.Workspace). |
Member of: | InsertService |
Example
local model = game:GetService("InsertService"):LoadAsset(assetId) if(model:IsA("Model")) then local tab = game:GetService("InsertService"):Insert(model) end