Advertisement
subaru112g

cat

Feb 3rd, 2019
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. local char = owner.Character
  2.  
  3. for i,v in pairs(char:GetChildren()) do
  4. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  5. v:Destroy()
  6. end
  7. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  8. v.Transparency = 1
  9. end
  10. end
  11.  
  12. for i,v in pairs(char.Head:GetChildren()) do
  13. if v.ClassName == "Decal" then
  14. v.Transparency = 1
  15. end
  16. end
  17.  
  18. local hum = char:FindFirstChildOfClass("Humanoid")
  19. local idleanim = Instance.new("Animation")
  20. idleanim.Name = "Roblox Idle Animation"
  21. idleanim.AnimationId = "http://www.roblox.com/asset/?id=182436935"
  22. local idleanimplay = hum:LoadAnimation(idleanim)
  23. idleanimplay:Play()
  24. wait(0.1)
  25. if char:FindFirstChild("Animate") then
  26. char.Animate:Destroy()
  27. end
  28.  
  29. if hum then
  30. hum.Name = "CAT"
  31. hum.WalkSpeed = 30
  32. hum.MaxHealth = 9999999999999999
  33. hum.Health = 9999999999999999
  34. end
  35.  
  36. local mus = nil
  37.  
  38. mus = Instance.new("Sound",char.Torso)
  39. mus.SoundId = "rbxassetid://182878994"
  40. mus.Volume = 1
  41. mus.Looped = true
  42. mus:Play()
  43.  
  44. local p = Instance.new("Part",char)
  45. p.Size = char.Torso.Size
  46. local m = Instance.new("SpecialMesh",p)
  47. m.Scale = Vector3.new(0.1, 0.1, 0.1)
  48. m.Offset = Vector3.new(0, -2.2, 0)
  49. m.MeshId = "rbxassetid://430323721"
  50. m.TextureId = "rbxassetid://430325596"
  51. local w = Instance.new("Weld",p)
  52. w.Part0 = p
  53. w.Part1 = char.Torso
  54. w.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  55. w.C1 = CFrame.new(0, 0, 0, -1, 0, 2.5331974e-07, 0, 1, 0, -2.5331974e-07, 0, -1)
  56.  
  57. while true do
  58. wait()
  59. hum.Health = 9999999999999999
  60. if not(mus.Parent == char.Torso) then
  61. mus = Instance.new("Sound",char.Torso)
  62. mus.SoundId = "rbxassetid://182878994"
  63. mus.Volume = 1
  64. mus.Looped = true
  65. mus:Play()
  66. end
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement