I just dont want to make it hard for me
local Humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(chr) local Humanoid = chr:WaitForChild("Humanoid") end) end)
game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(chr) local Humanoid = chr:WaitForChild("Humanoid") end) end)
That's every way you can use to get a player's humanoid without using StarterCharacterScripts.
You can ask more question on my discord:
dis one way to get humanoid
game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local Humanoid = character:WaitForChild('Humanoid') end) end)