View difference between Paste ID: 9wgUf0gW and pwL4UDiP
SHOW: | | - or go back to the newest paste.
1
User = game.Players.jeremy32101
2
 
3
Char = User.Character
4
--Char.Humanoid.MaxHealth = math.huge
5-
User = game.Players.kash5
5+
6
Char = User.Character
7
PrimaryColor = "Institutional white"
8
SecondaryColor = "Pastel light blue"
9
ThirdColor = "Medium blue"
10
SkinColor = "Cool yellow"
11
 
12
for i,v in pairs(Char:GetChildren()) do
13
        if v:IsA("CharacterMesh") then
14
                v:Remove()
15
        elseif v.Name == "Shirt" then
16
                v:Remove()
17
        elseif v.Name == "Pants" then
18
        elseif v.Name == "Torso" then
19
                if v:FindFirstChild("roblox") then
20
                        v.roblox:Remove()
21
                end
22
                
23
                
24
        elseif v:IsA("Hat") then
25
                v:Remove()
26
        elseif v.Name == "Head" then
27
                v.BrickColor = BrickColor.new(SkinColor)
28
                if v:FindFirstChild("face") ~= nil then
29
                        v.face:Remove()
30
                end
31
        
32
        end
33
end
34
 
35
 
36
local h = Instance.new("Part",Char)
37
h.Name = "Hood"
38
h.formFactor = "Custom"
39
h.Size = Vector3.new(1,1,1)
40
h.TopSurface = 0
41
h.Reflectance = 0
42
h.BottomSurface = 0
43
h.Position = h.Parent.Head.Position
44
h.BrickColor = BrickColor.new(PrimaryColor)
45
local x = Instance.new("Weld",h)
46
x.Part0 = h
47
x.Part1 = Char:FindFirstChild("Head")
48
x.C0 = x.C0 + Vector3.new(0,-0.3,0)
49
local sp = Instance.new("SpecialMesh",h)
50
sp.MeshType = "FileMesh"
51
sp.MeshId = "http://www.roblox.com/asset/?id=16952952"
52
 
53
--torso
54
prt1 = Instance.new("Part", Char)
55
prt1.formFactor = "Symmetric"
56
prt1.Size = Vector3.new(1,1,1)
57
prt1.CanCollide = false
58
prt1.BrickColor = BrickColor.new(PrimaryColor)
59
prt1.TopSurface = "Smooth"
60
prt1.Transparency = 0
61
prt1.BottomSurface = "Smooth"