I was making a script and it gave the an error: ''Attempt To Index Nil With ‘Humanoid’"
Script:
players.PlayerAdded:Connect(function(plr)
local char = plr.Character
local hum = char.Humanoid
if module.CanJump == false then
hum.JumpPower = 0
end
if module.CanWalk == false then
hum.WalkSpeed = 0
end
end)