Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while wait(0.1) do
- for i,v in pairs(game.Players:GetChildren()) do
- for j,w in pairs(v.Character:GetChildren()) do
- if w:IsA("ShirtGraphic") then
- print("Removed Shirt Graphic")
- w:Destroy()
- end
- if w:IsA("Shirt")then
- print("Removed Shirt")
- w:Destroy()
- end
- if w:IsA("Pants")then
- print("Removed Pant")
- w:Destroy()
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement