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.
1 | local AssetId = 82353 -- paste the gear ID here |
2 |
3 | local Model = game:GetService( "InsertService" ):LoadAsset(AssetId) |
4 |
5 | local Tool = Model:GetChildren() |
6 | Tool.Parent = game.StarterPack |