Attempt to index a nil value fix?
I found a vampire script and I'm attempting to modify it, but when i go to try and make it remove the players shirt, It works, but the rest of the script doesnt execute due to the error.
Workspace.Player.vmp.Vampire:13: attempt to index a nil value
001 | if script.Parent.Name = = "vmp" then |
003 | e = script.Parent.Parent:children() |
005 | if e [ i ] :IsA( "Part" ) then |
007 | e [ i ] .BrickColor = BrickColor.new( "White" ) |
009 | e [ i ] .Parent:FindFirstChild( "Torso" ).BrickColor = BrickColor.new( "Black" ) |
010 | e [ i ] .Parent:FindFirstChild( "Right Leg" ).BrickColor = BrickColor.new( "Black" ) |
011 | e [ i ] .Parent:FindFirstChild( "Left Leg" ).BrickColor = BrickColor.new( "Black" ) |
012 | e [ i ] .Parent:FindFirstChild( "Torso" ):FindFirstChild( "roblox" ).Texture = "" |
013 | e [ i ] .Parent:FindFirstChild( "Shirt" ):remove() |
016 | script.Parent = script.Parent.Parent |
019 | local larm = script.Parent:FindFirstChild( "Left Arm" ) |
020 | local rarm = script.Parent:FindFirstChild( "Right Arm" ) |
024 | function findNearestTorso(pos) |
025 | local list = game.Workspace:children() |
033 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) and (temp 2 :findFirstChild( "vmp" ) = = nil ) then |
035 | z = Workspace:children() |
037 | if z [ x ] :findFirstChild( "vmp" ) and z [ x ] ~ = script.Parent then |
038 | if z [ x ] .vmp.Value = = temp 2 then |
044 | temp = temp 2 :findFirstChild( "Torso" ) |
045 | human = temp 2 :findFirstChild( "Humanoid" ) |
046 | if (temp ~ = nil ) and (human ~ = nil ) and (human.Health > 0 ) then |
047 | if (temp.Position - pos).magnitude < dist then |
049 | dist = (temp.Position - pos).magnitude |
058 | function onTouched(part) |
059 | if debounce then return end |
061 | print ( "Touched" , part.Parent:findFirstChild( "Torso" ),target) |
062 | if part.Parent:findFirstChild( "Torso" ) then |
063 | if part.Parent.Torso = = target then |
064 | script.Parent.Animate.Disabled = true |
065 | part.Parent.Humanoid.PlatformStand = true |
066 | g = Instance.new( "BodyGyro" ) |
067 | g.Parent = part.Parent.Torso |
068 | g.cframe = CFrame.new(Vector 3. new( 0 , 0 , 0 ), Vector 3. new( 0 ,- 5000000 , 0 )) |
069 | g.maxTorque = Vector 3. new( math.huge , math.huge , math.huge ) |
071 | w = Instance.new( "Weld" ) |
072 | w.Parent = script.Parent.Head |
073 | w.Part 0 = part.Parent.Head |
075 | w.C 0 = CFrame.new( 0 ,. 5 , 1 ) * CFrame.fromEulerAnglesXYZ( 0 , 0 ,- 2 ) |
076 | script.Parent.Torso [ "Left Shoulder" ] .DesiredAngle = - 3 |
077 | script.Parent.Torso [ "Right Shoulder" ] .DesiredAngle = 3 |
078 | script.Parent.Torso [ "Left Hip" ] .DesiredAngle = -. 5 |
079 | script.Parent.Torso [ "Right Hip" ] .DesiredAngle = . 5 |
081 | if script.Parent.Humanoid.Health ~ = 0 then |
082 | b = Instance.new( "ObjectValue" ) |
083 | b.Parent = part.Parent |
085 | script:clone().Parent = b |
089 | script.Parent.Animate.Disabled = false |
090 | part.Parent.Humanoid.PlatformStand = false |
098 | if script.Parent:findFirstChild( "Head2" ) = = nil then |
099 | character = script.Parent |
100 | a = character.Head:clone() |
101 | character.Head.Transparency = 1 |
104 | b = Instance.new( "Weld" ) |
106 | b.Part 0 = character.Head |
110 | script.Parent.Torso.Touched:connect(onTouched) |
114 | target = findNearestTorso(script.Parent.Torso.Position) |
115 | if target ~ = nil and not attacking then |
116 | script.Parent.vmp.Value = target.Parent |
117 | mag = (script.Parent.Torso.Position - target.Position).magnitude |
118 | script.Parent.Humanoid:MoveTo(target.Position+script.Parent.Torso.CFrame.lookVector* 2 , target) |
119 | e = script.Parent:children() |
121 | if e [ i ] :IsA( "BasePart" ) and e [ i ] .Name ~ = "Head" then |
122 | e [ i ] .Transparency = 0 + (mag/ 50 ) |
124 | if e [ i ] :IsA( "Hat" ) then |
125 | e [ i ] .Handle.Transparency = 0 + (mag/ 50 ) |
129 | script.Parent.Humanoid:MoveTo(script.Parent.Torso.Position, script.Parent.Torso) |
If i messed up let me know im new to this forum. Please help me fix line 13