Advertisement
Webcat70

rc

Jan 2nd, 2019
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. while wait(0.1) do
  2.     for i,v in pairs(game.Players:GetChildren()) do
  3.         for j,w in pairs(v.Character:GetChildren()) do
  4.             if w:IsA("ShirtGraphic") then
  5.                 print("Removed Shirt Graphic")
  6.                 w:Destroy()
  7.             end
  8.             if w:IsA("Shirt")then
  9.                 print("Removed Shirt")
  10.                 w:Destroy()
  11.             end
  12.             if w:IsA("Pants")then
  13.                 print("Removed Pant")
  14.                 w:Destroy()
  15.             end        
  16.         end
  17.     end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement