Advertisement
subaru112g

disguise

Jan 9th, 2019
197
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. local bdb = owner.Character:FindFirstChild("Body Colors")
  3. if bdb then
  4. bdb:Destroy()
  5. end
  6. for i,v in pairs(owner.Character:GetChildren()) do
  7. if v.ClassName == "CharacterMesh" then
  8. v:Destroy()
  9. end
  10.  
  11. if v.ClassName == "Shirt" then
  12. v:Destroy()
  13. end
  14.  
  15. if v.ClassName == "Part" then
  16. v.BrickColor = BrickColor.new("Light orange")
  17. end
  18.  
  19. if v.ClassName == "MeshPart" then
  20. v.BrickColor = BrickColor.new("Light orange")
  21. end
  22.  
  23. if v.ClassName == "Pants" then
  24. v:Destroy()
  25. end
  26.  
  27. if v.ClassName == "ShirtGraphic" then
  28. v:Destroy()
  29. end
  30.  
  31. if v.ClassName == "Accessory" then
  32. v:Destroy()
  33. end
  34.  
  35. if v.ClassName == "Hat" then
  36. v:Destroy()
  37. end
  38.  
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement