Advertisement
MrSlakyx

a

Jun 27th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. local char = owner.Character
  2.  
  3. for i,v in pairs(char:GetChildren()) do
  4. for i,s in pairs(v:GetChildren()) do
  5. if s.ClassName == "Decal" then
  6. s:Destroy()
  7. end
  8. end
  9. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  10. v.Handle.Transparency = 0.8
  11. v.Handle.Material = "Metal"
  12. v.Handle:FindFirstChildOfClass("SpecialMesh").TextureId = ""
  13. v.Handle.BrickColor = BrickColor.new("Medium stone gray")
  14. end
  15.  
  16. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  17. if not(v.Name == "HumanoidRootPart") then
  18. v.Transparency = 0.8
  19. v.Material = "Metal"
  20. v.BrickColor = BrickColor.new("Medium stone gray")
  21. end
  22. end
  23. end
  24.  
  25. while true do
  26. wait()
  27. for i,v in pairs(char:GetChildren()) do
  28. if v.ClassName == "CharacterMesh" or v.ClassName == "Shirt" or v.ClassName == "Pants" then
  29. v:Destroy()
  30. end
  31. for i,s in pairs(v:GetChildren()) do
  32. if s.ClassName == "Decal" then
  33. s:Destroy()
  34. end
  35. end
  36.  
  37. if v.ClassName == "Model" then
  38. for i,s in pairs(v:GetChildren()) do
  39. if s.ClassName == "Part" or s.ClassName == "MeshPart" then
  40. if not(s.Name == "HumanoidRootPart") then
  41. s.Transparency = 0.8
  42. s.Material = "Metal"
  43. s.BrickColor = BrickColor.new("Medium stone gray")
  44. end
  45. end
  46. end
  47. end
  48.  
  49. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  50. if not(v.Name == "HumanoidRootPart") then
  51. v.Transparency = 0.8
  52. v.Material = "Metal"
  53. v.BrickColor = BrickColor.new("Medium stone gray")
  54. end
  55. end
  56. end
  57.  
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement