4zx16

Players Only Tool (Non-Gamepass)

Oct 28th, 2021 (edited)
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || SPECIFIC GEAR HANDLER || ONLY TOUCH TOOL AND PLAYERS!
  3. ]]
  4. local players = {}
  5. local tool = game:GetService("ServerStorage").Name
  6.  
  7. game.Players.PlayerAdded:Connect(function(plr)
  8.     plr.CharacterAdded:Connect(function(chr)
  9.         for i = 1, #players do
  10.             if players[i] == plr.Name then
  11.                 tool:Clone().Parent = plr:WaitForChild("Backpack")
  12.             end
  13.         end
  14.     end)
  15. end)
Add Comment
Please, Sign In to add comment