I want to give gear to the players right when they join the game. I want the gear to be ROBLOX gear which has the gear id instead of the toolbox gear. Is there a way to do that?
With InsertService
, you can insert anything from the catalog that is created by ROBLOX or you.
local AssetId = 82353 -- paste the gear ID here local Model = game:GetService("InsertService"):LoadAsset(AssetId) local Tool = Model:GetChildren() Tool.Parent = game.StarterPack