Advertisement
idkwhatiam

ditto skin

Jun 2nd, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. ditto = owner.Character
  2.  
  3. for _,v in pairs (ditto:children()) do
  4. if v:IsA("Part") then
  5. v.BrickColor = BrickColor.new("Hot pink")
  6. end
  7.  
  8. if v:IsA("Shirt") then
  9. v:Destroy()
  10. end
  11.  
  12. if v:IsA("Pants") then
  13. v:Destroy()
  14. end
  15.  
  16. if v:IsA("Accessory") then
  17. v.Handle.BrickColor = BrickColor.new("Hot pink")
  18. for _,v in pairs (v.Handle:children()) do
  19. if v:IsA("SpecialMesh") then
  20. v.TextureId = ""
  21. end
  22. end
  23. end
  24.  
  25. if v:IsA("Decal") and v.Name == "roblox" then
  26. v:Destroy()
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement