Advertisement
subaru112g

be gray

Jan 22nd, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. owner.Character.Head.face.Texture = "rbxasset://textures/face.png"
  2.  
  3. for i,v in pairs(owner.Character:GetChildren()) do
  4. if v.ClassName == "CharacterMesh" then
  5. v:Destroy()
  6. end
  7.  
  8. if v.ClassName == "Shirt" then
  9. v:Destroy()
  10. end
  11.  
  12. if v.ClassName == "Part" then
  13. v.BrickColor = BrickColor.new("Medium stone gray")
  14. local M =Instance.new("BlockMesh",v)
  15. end
  16.  
  17. if v.ClassName == "MeshPart" then
  18. v.BrickColor = BrickColor.new("Medium stone gray")
  19. local M =Instance.new("BlockMesh",v)
  20. end
  21.  
  22. if v.ClassName == "Pants" then
  23. v:Destroy()
  24. end
  25.  
  26. if v.ClassName == "ShirtGraphic" then
  27. v:Destroy()
  28. end
  29.  
  30. if v.ClassName == "Accessory" then
  31. v:Destroy()
  32. end
  33.  
  34. if v.ClassName == "Hat" then
  35. v:Destroy()
  36. end
  37.  
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement