4zx16

Developer Only Tools

Oct 28th, 2021 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. --[[
  2.  || 📜 Creator: @4zx16 || DEVELOPER ITEMS ||  ONLY MESS WITH LOCAL PLAYERS AND DEV ITEMS FOLDER!
  3. ]]
  4. local players = {}
  5. local ServerStorage = game.ServerStorage.DevItems
  6.  
  7. game.Players.PlayerAdded:Connect(function(plr)
  8.     plr.CharacterAdded:Connect(function()
  9.         for _, thing in pairs(players) do
  10.             if plr.Name == thing then
  11.                 for _, v in pairs(ServerStorage:GetChildren()) do
  12.                     v:Clone().Parent = plr.Backpack
  13.                 end
  14.             end
  15.         end
  16.     end)
  17. end)
Add Comment
Please, Sign In to add comment