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

Attempt to index a nil Value?

Asked by 6 years ago

It prints Attempt To index a nil Value.

The ClassValue is an IntValue.

01script.Parent.Parent.TicketChecker.Touched:Connect(function(part)
02    if part.Parent.Parent:FindFirstChild("Humanoid") then
03        coolDown1 = true
04        local plr = game.Players:GetPlayerFromCharacter(part.Parent.Parent)
05        if part:FindFirstChild("ClassValue").Value == 5 then
06            plr.Character.Torso.CFrame = CFrame.new(plr.Character.Torso.Position, script.Parent.Parent.GateTP.Position)
07            print("a")
08        elseif part.Parent:FindFirstChild("ClassValue").Value == 4 and boardingClass <= 4 and boardingClass > 0 then
09            plr.Character.Torso.CFrame = CFrame.new(plr.Character.Torso.Position, script.Parent.Parent.GateTP.Position)
10 
11        elseif part.Parent:FindFirstChild("ClassValue").Value == 3 and boardingClass <= 3 and boardingClass > 0 then
12            plr.Character.Torso.CFrame = CFrame.new(plr.Character.Torso.Position, script.Parent.Parent.GateTP.Position)
13 
14        elseif part.Parent:FindFirstChild("ClassValue").Value == 2 and boardingClass <= 2 and boardingClass > 0 then
15            plr.Character.Torso.CFrame = CFrame.new(plr.Character.Torso.Position, script.Parent.Parent.GateTP.Position)
View all 24 lines...
0
Which line? joshthegamer456 93 — 6y

Answer this question