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

why is the character variable a nil value?

Asked by
seikkatsu 110
5 years ago
1local uis = game:GetService("UserInputService")
2local anim = Instance.new("Animation")
3local p = game.Players.LocalPlayer
4local c = p.Character
5local h = c:WaitForChild("Humanoid")
6if h then
7    print("H")
8end

it doesn't print in the output h but it says that c is a nil value how can i solve this?

1 answer

Log in to vote
1
Answered by
Lazarix9 245 Moderation Voter
5 years ago
1local c = p.Character or p.CharacterAdded:Wait()

local c = p.Character returned nil because character wasnt loaded, if you add or p.CharacterAdded:Wait() then if p.Character returns nil it will wait til character loads

0
thank you! seikkatsu 110 — 5y
0
welcome Lazarix9 245 — 5y
Ad

Answer this question