Advertisement
Fatherbeard1

Untitled

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