Advertisement
4zx16

Insert Catalog Gear On Touch

Nov 13th, 2021 (edited)
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || INSERT CATALOG GEAR ON TOUCH || ONLY CHANGE ID!
  3. ]]
  4. local epic = false -- :(
  5. local IS = game:GetService("InsertService")
  6. local id = 0
  7.  
  8. script.Parent.Touched:Connect(function(plr)
  9.     local player = game.Players:GetPlayerFromCharacter(plr.Parent)
  10.  
  11.     if player ~= nil and epic == false then
  12.         epic = true
  13.  
  14.         IS:LoadAsset(id):GetChildren()[1].Parent = player:WaitForChild("Backpack")
  15.         wait(1)
  16.         epic = false
  17.     end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement