AIpha

Untitled

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