SHOW:
|
|
- or go back to the newest paste.
| 1 | - | --lordsheen's Dog Morph Script--------------------------- |
| 1 | + | |
| 2 | - | --------------------------------------------------------- |
| 2 | + | local p = game.Players.LocalPlayer |
| 3 | - | --------------------------------------------------------- |
| 3 | + | local char = p.Character |
| 4 | - | --------------------------------------------------------- |
| 4 | + | local Humanoid = p.Character.Humanoid |
| 5 | - | local me = game.Players.Ninja12Devil |
| 5 | + | p.Character.Humanoid.MaxHealth = math.huge + math.huge |
| 6 | - | local char = me.Character |
| 6 | + | p.Character.Humanoid.Health = math.huge + math.huge |
| 7 | ||
| 8 | for i,p in pairs(char.Torso:GetChildren()) do | |
| 9 | if p.className == "Decal" then | |
| 10 | p:Remove() | |
| 11 | end | |
| 12 | end | |
| 13 | wait() | |
| 14 | for i,p in pairs(char:GetChildren()) do | |
| 15 | if p.className == "CharacterMesh" then | |
| 16 | p:Remove() | |
| 17 | end | |
| 18 | end | |
| 19 | wait() | |
| 20 | for i,p in pairs(char:GetChildren()) do | |
| 21 | if p.className == "Hat" then | |
| 22 | p:Remove() | |
| 23 | end | |
| 24 | end | |
| 25 | wait() | |
| 26 | for i,p in pairs(char:GetChildren()) do | |
| 27 | if p.className == "Shirt" then | |
| 28 | p:Remove() | |
| 29 | end | |
| 30 | end | |
| 31 | wait() | |
| 32 | for i,p in pairs(char:GetChildren()) do | |
| 33 | if p.className == "Pants" then | |
| 34 | p:Remove() | |
| 35 | end | |
| 36 | end | |
| 37 | wait() | |
| 38 | for i,p in pairs(char:GetChildren()) do | |
| 39 | if p.className == "ShirtGraphic" then | |
| 40 | p:Remove() | |
| 41 | end | |
| 42 | end | |
| 43 | wait() | |
| 44 | ||
| 45 | char["Body Colors"].HeadColor = BrickColor.new("Reddish brown")
| |
| 46 | char["Body Colors"].LeftArmColor = BrickColor.new("Reddish brown")
| |
| 47 | char["Body Colors"].RightArmColor = BrickColor.new("Reddish brown")
| |
| 48 | char["Body Colors"].LeftLegColor = BrickColor.new("Reddish brown")
| |
| 49 | char["Body Colors"].RightLegColor = BrickColor.new("Reddish brown")
| |
| 50 | char["Body Colors"].TorsoColor = BrickColor.new("Brown")
| |
| 51 | ||
| 52 | local t = char.Torso | |
| 53 | local h = char.Head | |
| 54 | local ra = char["Right Arm"] | |
| 55 | local rl = char["Right Leg"] | |
| 56 | local la = char["Left Arm"] | |
| 57 | local ll = char["Left Leg"] | |
| 58 | ||
| 59 | h.formFactor = "Symmetric" | |
| 60 | h.BrickColor = BrickColor.new("Reddish brown")
| |
| 61 | h.Size = Vector3.new(2,2,2) | |
| 62 | h.Shape = "Ball" | |
| 63 | for i,p in pairs(h:GetChildren()) do | |
| 64 | if p.className == "SpecialMesh" then | |
| 65 | h.Mesh:Remove() | |
| 66 | end | |
| 67 | end | |
| 68 | wait() | |
| 69 | ||
| 70 | t.formFactor = "Symmetric" | |
| 71 | t.BrickColor = BrickColor.new("Brown")
| |
| 72 | t.Size = Vector3.new(3,1,4) | |
| 73 | ||
| 74 | h.BrickColor = BrickColor.new("Reddish brown")
| |
| 75 | ra.BrickColor = BrickColor.new("Reddish brown")
| |
| 76 | la.BrickColor = BrickColor.new("Reddish brown")
| |
| 77 | rl.BrickColor = BrickColor.new("Reddish brown")
| |
| 78 | ll.BrickColor = BrickColor.new("Reddish brown")
| |
| 79 | ||
| 80 | local w = Instance.new("Weld")
| |
| 81 | w.Part1 = t | |
| 82 | w.Part0 = h | |
| 83 | local C1 = t.CFrame | |
| 84 | local C0 = t.CFrame - Vector3.new(0,1,-2) | |
| 85 | w.C1 = C1 | |
| 86 | w.C0 = C0 | |
| 87 | w.Parent = char | |
| 88 | ||
| 89 | local w = Instance.new("Weld")
| |
| 90 | w.Part1 = t | |
| 91 | w.Part0 = ra | |
| 92 | local C1 = t.CFrame | |
| 93 | local C0 = t.CFrame - Vector3.new(1,-1.4,-1.5) | |
| 94 | w.C1 = C1 | |
| 95 | w.C0 = C0 | |
| 96 | w.Parent = char | |
| 97 | ||
| 98 | local w = Instance.new("Weld")
| |
| 99 | w.Part1 = t | |
| 100 | w.Part0 = la | |
| 101 | local C1 = t.CFrame | |
| 102 | local C0 = t.CFrame - Vector3.new(-1,-1.4,-1.5) | |
| 103 | w.C1 = C1 | |
| 104 | w.C0 = C0 | |
| 105 | w.Parent = char | |
| 106 | ||
| 107 | local w = Instance.new("Weld")
| |
| 108 | w.Part1 = t | |
| 109 | w.Part0 = rl | |
| 110 | local C1 = t.CFrame | |
| 111 | local C0 = t.CFrame - Vector3.new(1,-1.4,1.5) | |
| 112 | w.C1 = C1 | |
| 113 | w.C0 = C0 | |
| 114 | w.Parent = char | |
| 115 | ||
| 116 | local w = Instance.new("Weld")
| |
| 117 | w.Part1 = t | |
| 118 | w.Part0 = ll | |
| 119 | local C1 = t.CFrame | |
| 120 | local C0 = t.CFrame - Vector3.new(-1,-1.4,1.5) | |
| 121 | w.C1 = C1 | |
| 122 | w.C0 = C0 | |
| 123 | w.Parent = char | |
| 124 | ||
| 125 | h = Instance.new("Hat")
| |
| 126 | p = Instance.new("Part")
| |
| 127 | h.Name = "Hat" | |
| 128 | p.Parent = h | |
| 129 | p.Position = char.Head.Position | |
| 130 | p.Name = "Handle" | |
| 131 | p.formFactor = 0 | |
| 132 | p.Size = Vector3.new(0,-0.25,0) | |
| 133 | p.BottomSurface = 0 | |
| 134 | p.TopSurface = 0 | |
| 135 | p.Locked = true | |
| 136 | m = Instance.new("SpecialMesh")
| |
| 137 | m.Parent= p | |
| 138 | m.MeshType = "FileMesh" | |
| 139 | m.MeshId = "http://www.roblox.com/asset/?id=1028713" | |
| 140 | m.TextureId = "http://www.roblox.com/asset/?id=51495000" | |
| 141 | m.Scale = Vector3.new(1.5,1.5,1.5) | |
| 142 | h.Parent = char | |
| 143 | h.AttachmentPos = Vector3.new(0, -0.25, -0.05) | |
| 144 | h.AttachmentUp = Vector3.new(0, 0.981, -0.196) | |
| 145 | h.AttachmentRight = Vector3.new(1, 0, 0) | |
| 146 | h.AttachmentForward = Vector3.new(0, -0.196, -0.681) | |
| 147 | wait() |