Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local char = owner.Character
- for i,v in pairs(char:GetChildren()) do
- if v.ClassName == "Hat" or v.ClassName == "Accessory" then
- v:Destroy()
- end
- if v.ClassName == "Part" or v.ClassName == "MeshPart" then
- v.Transparency = 1
- end
- end
- for i,v in pairs(char.Head:GetChildren()) do
- if v.ClassName == "Decal" then
- v.Transparency = 1
- end
- end
- local hum = char:FindFirstChildOfClass("Humanoid")
- local idleanim = Instance.new("Animation")
- idleanim.Name = "Roblox Idle Animation"
- idleanim.AnimationId = "http://www.roblox.com/asset/?id=182436935"
- local idleanimplay = hum:LoadAnimation(idleanim)
- idleanimplay:Play()
- wait(0.1)
- if char:FindFirstChild("Animate") then
- char.Animate:Destroy()
- end
- if hum then
- hum.Name = "CAT"
- hum.WalkSpeed = 30
- hum.MaxHealth = 9999999999999999
- hum.Health = 9999999999999999
- end
- local mus = nil
- mus = Instance.new("Sound",char.Torso)
- mus.SoundId = "rbxassetid://182878994"
- mus.Volume = 1
- mus.Looped = true
- mus:Play()
- local p = Instance.new("Part",char)
- p.Size = char.Torso.Size
- local m = Instance.new("SpecialMesh",p)
- m.Scale = Vector3.new(0.1, 0.1, 0.1)
- m.Offset = Vector3.new(0, -2.2, 0)
- m.MeshId = "rbxassetid://430323721"
- m.TextureId = "rbxassetid://430325596"
- local w = Instance.new("Weld",p)
- w.Part0 = p
- w.Part1 = char.Torso
- w.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- w.C1 = CFrame.new(0, 0, 0, -1, 0, 2.5331974e-07, 0, 1, 0, -2.5331974e-07, 0, -1)
- while true do
- wait()
- hum.Health = 9999999999999999
- if not(mus.Parent == char.Torso) then
- mus = Instance.new("Sound",char.Torso)
- mus.SoundId = "rbxassetid://182878994"
- mus.Volume = 1
- mus.Looped = true
- mus:Play()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement