im stupid and i don't know how to do that, i also don't even know if it works soooo
If anyone knows, please answer, I'd appreciate it a lot
specific player
local Players = game:GetService("Players") -- get specific player local player = Players:FindFirstChild("InsertPlayerNameHere") -- to get the character local character = player.Character -- to get the humanoid from character local humanoid = character:WaitForChild("Humanoid")
every player that joined the game
local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") end) end)