Advertisement
subaru112g

test

Mar 3rd, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. while true do
  2. local char = owner.Character
  3. wait(0.01)
  4. for i,v in pairs(char:GetChildren()) do
  5. for i,s in pairs(v:GetChildren()) do
  6. if s.ClassName == "Decal" then
  7. s:Destroy()
  8. end
  9. end
  10. if v.ClassName == "Hat" or v.ClassName == "Accessory" or v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "CharacterMesh" then
  11. v:Destroy()
  12. end
  13. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  14. v.Transparency = 0.5
  15. v.Color = Color3.new(math.random(1,255),math.random(1,255),math.random(1,255))
  16. end
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement