Advertisement
123wallyisawesome

Untitled

Dec 4th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. local pchar = game.Players.LocalPlayer.Character
  2.  
  3. for i,v in pairs(pchar.Torso:GetChildren()) do
  4. if v.ClassName == 'Decal' then
  5. v:Destroy()
  6. end
  7. end
  8. for i,v in pairs(pchar:GetChildren()) do
  9. if v.ClassName == 'Hat' then
  10. v:Destroy()
  11. end
  12. end
  13.  
  14. for i,v in pairs(pchar.Head:GetChildren()) do
  15. if v.ClassName == 'Decal' then
  16. v:Destroy()
  17. end
  18. end
  19.  
  20. local duck = Instance.new('SpecialMesh', pchar.Torso)
  21. duck.MeshType = 'FileMesh'
  22. duck.MeshId = 'http://www.roblox.com/asset/?id=9419831'
  23. duck.TextureId = 'http://www.roblox.com/asset/?id=9419827'
  24. duck.Scale = Vector3.new(5, 5, 5)
  25. pchar.Head.Transparency = 1
  26. pchar['Left Arm'].Transparency = 1
  27. pchar['Right Arm'].Transparency = 1
  28. pchar['Left Leg'].Transparency = 1
  29. pchar['Right Leg'].Transparency = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement