Advertisement
Guest User

defective aa remover

a guest
Jan 25th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2. plr.CharacterAdded:Connect(function(char)
  3. print(char.Name)
  4. local d = char:GetChildren()
  5. print(d[1])
  6.  
  7. for i,v in pairs(d) do
  8. print("ye")
  9. if v:IsA("Accessory")then
  10. print("yee")
  11. v.Parent = game["ServerStorage"]
  12. print("yeee")
  13. end
  14. end
  15. end)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement