vevc3

Untitled

Sep 27th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. char = game.Players.LocalPlayer.Character
  2.  
  3. for i,v in pairs(char.Head: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 == 'Accessory' then
  10. v:Destroy()
  11. end
  12. end
  13. for i,v in pairs(char.Head:GetChildren()) do
  14. if v.ClassName == 'Decal' or v.ClassName == 'Mesh' then
  15. v:Destroy()
  16. end
  17. end
  18.  
  19. part = Instance.new("Part", char.Torso)
  20. part.CanCollide = false
  21. part.CFrame = char.Torso.CFrame
  22.  
  23. weld = Instance.new("Weld", part)
  24. weld.Part0 = char.Torso
  25. weld.Part1 = part
  26. weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
  27.  
  28. local spongebob = Instance.new('SpecialMesh', part)
  29. spongebob.MeshType = 'FileMesh'
  30. spongebob.MeshId = 'http://www.roblox.com/asset/?id=430087593'
  31. spongebob.TextureId = 'http://www.roblox.com/asset/?id=430087598'
  32. spongebob.Scale = Vector3.new(6, 6, 6)
  33.  
  34. char.Head.Transparency = 1
  35. char.Torso.Transparency = 1
  36. char['Left Arm'].Transparency = 1
  37. char['Right Arm'].Transparency = 1
  38. char['Left Leg'].Transparency = 1
  39. char['Right Leg'].Transparency = 1
Add Comment
Please, Sign In to add comment