How would I go about getting a players’ humanoid in Server Script Service
game:GetService("Players").PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Char)
local Humanoid = Char:WaitForChild("Humanoid")
end)
end)
1 Like
Thanks dude, I tried it and it works now!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.