Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Attempt to index a nil value fix?

Asked by 9 years ago

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

001if script.Parent.Name == "vmp" then
002    wait(5)
003    e = script.Parent.Parent:children()
004    for i = 1,#e do
005        if e[i]:IsA("Part") then
006            wait(1)
007            e[i].BrickColor = BrickColor.new("White")
008            e[i].Parent:FindFirstChild("Head"):FindFirstChild("face").Texture="http://www.roblox.com/asset/?id=7323991"
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()
014        end
015    end
View all 131 lines...

If i messed up let me know im new to this forum. Please help me fix line 13

0
It did cut some of it off but i dont know how to fix that. My Apologies. orangebeak 5 — 9y

1 answer

Log in to vote
4
Answered by 9 years ago

Instead, add an IF statement to check if it exists.

1if e[i].Parent:FindFirstChild("Shirt") then
2e[i].Parent:FindFirstChild("Shirt"):Destroy() -- :remove() is deprecated.
3-- Consider this: In local scripts, use remove(), but we are using normal script.
4end

Hope this helps! Thanks, marcoantoniosantos3.

0
Ah, ya beat me to it. Exactly what I was gonna suggest, lol. Upvoted tho dyler3 1510 — 9y
0
Thank you :) orangebeak 5 — 9y
1
Line 2 need only be: e[i].Parent.Shirt:Destroy() (Remove is Deprecated). We already know it exists, no need to check for it again. adark 5487 — 9y
0
adark, just because we made sure pants exist doesnt mean there are shirt. Well take a look at the full code again. marcoantoniosantos3 200 — 9y
0
orange press the accept answer button if this fixed your problem. marcoantoniosantos3 200 — 9y
Ad

Answer this question