attempt to index nil with 'WaitForChild', with HumanoidRootPart.??
What i am trying to achieve:
In this script I am trying to spawn a part on the Cframe of the characters HumanoidRootPart
The problem:
Keep getting an error message I dont know how to fix.
"Players.snipperdiaper.Backpack.Tool.LocalScript:4: attempt to index nil with 'WaitForChild'"
Anyone know why this keeps happening?
Line in question:
1 | humanoidRootPart = character:WaitForChild( "HumanoidRootPart" ) |
Complete Script (Not finished with the CFrame spawning yet)
01 | local tool = script.Parent |
02 | player = game.Players.LocalPlayer |
03 | character = game.Players.LocalPlayer.Character |
04 | humanoid = character:WaitForChild( "Humanoid" ) |
05 | humanoidRootPart = character:WaitForChild( "HumanoidRootPart" ) |
08 | tool.Activated:Connect( function () |
10 | local part = game.Workspace:FindFirstChild( "BariWall" ) |
11 | local ClonedPart = part:Clone() |
12 | part.Parent = workspace |