How would you have a player get gear from the roblox catalog? Is it something like
local itemId = "rbxassetid://123456789" player.Backpack:GiveItem(itemId)
Here you go
local InsertService = game:GetService("InsertService") local GiveItem = function(Player, AssetId) local Gear = InsertService:LoadAsset(AssetId):GetChildren()[1] local Backpack = Player:WaitForChild("Backpack") Gear.Parent = Backpack InsertService:ClearAllChildren() end -- Example GiveItem(player, 212641536)
No, but you can go in the Toolbox and find ROBLOX gear from there.