How would you have a player get gear from the roblox catalog? Is it something like
Here you go
01 | local InsertService = game:GetService( "InsertService" ) |
02 |
03 | local GiveItem = function (Player, AssetId) |
04 | local Gear = InsertService:LoadAsset(AssetId):GetChildren() [ 1 ] |
05 | local Backpack = Player:WaitForChild( "Backpack" ) |
06 | Gear.Parent = Backpack |
07 | InsertService:ClearAllChildren() |
08 | end |
09 |
10 | -- Example |
11 | GiveItem(player, 212641536 ) |
No, but you can go in the Toolbox and find ROBLOX gear from there.