Advertisement
ElPeloncito

OnlyItemScript

Aug 10th, 2022
2,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local players = {""}
  2. local gear = game.Lighting.Item
  3.  
  4. game.Players.PlayerAdded:connect(function(plr)
  5.     plr.CharacterAdded:connect(function(chr)
  6.         for i = 1, #players do
  7.             if players[i] == plr.Name then
  8.                 gear:Clone().Parent = plr:WaitForChild("Backpack")
  9.             end
  10.         end
  11.     end)
  12. end)
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement