#help my script wont correctly work
1 messages · Page 1 of 1 (latest)
uh huh what shte issue
put humanoid after local player
local player=game.Players:GetPlayerFromCharacter(otherPart.Parent)
if player then
local hum=player.Character:WaitForChild("Humanoid")
end```
that's the same thing
Where is the problem? Errors?
i personally just wanted to do this so its easier to get the humanoid
local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)
local hum = player and player.Character:FindFirstChild("Humanoid")
if hum then
-- haha my way is better
end