Advertisement
4zx16

Insert Catalog Gear Command

May 27th, 2022 (edited)
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || GEAR COMMAND || SAY gear/ASSET ID
  3. ]]
  4. game.Players.PlayerAdded:Connect(function(player)
  5.     player.Chatted:Connect(function(msg)
  6.        
  7.         if string.sub(string.lower(msg),1,4) == "gear" then
  8.             game:GetService("InsertService"):LoadAsset(string.sub(msg,6)):GetChildren()[1].Parent = player:WaitForChild("Backpack")
  9.         end
  10.     end)
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement