Is there a way to insert objects from InsertService into a certain parent?

I want to insert objects from InsertService into a certain parent so i can get my friend’s tool into the player’s Backpack but i don’t know how…

Note that you may not be able to insert the assets created by your friend if your friend is the owner. More details are in the link.

Hey go3jack!

Using InsertService, you can do the following:

local assetid = 1 --put the id of the asset here
local player = game:GetService("Players")["arccitecc"] --put your name here

local asset = game:GetService("InsertService"):LoadAsset(assetid)
asset.Parent = player:WaitForChild("Backpack")

Hope this helps!