I think it is not my fault, it is something in animation.
And also try to change it to this:
local nowPlr = nil
local function StartToChaseThisPlayer(player)
repeat task.wait() local playerCharacter = player.Character or player.CharacterAdded:Wait()
local playerRoot = playerCharacter:WaitForChild("HumanoidRootPart")
local playerHumanoid = playerCharacter:WaitForChild("Humanoid")
if playerRoot and playerHumanoid then
humanoid:MoveTo(playerRoot.Position)
humanoid.MoveToFinished:Wait()
end
until nowPlr ~= player or playerHumanoid.Health <= 0 or humanoid.Health <= 0
end
local nowPlr = nil
local function StartToChaseThisPlayer(player)
local playerCharacter = player.Character or player.CharacterAdded:Wait()
local playerRoot = playerCharacter:WaitForChild("HumanoidRootPart")
local playerHumanoid = playerCharacter:WaitForChild("Humanoid")
repeat task.wait()
if playerRoot and playerHumanoid then
humanoid:MoveTo(playerRoot.Position)
humanoid.MoveToFinished:Wait()
end
until nowPlr ~= player or playerHumanoid.Health <= 0 or humanoid.Health <= 0
end
Sorry for big delay again, hm… Try this script just for test:
local nowPlr = nil
local function StartToChaseThisPlayer(player)
local playerCharacter = player.Character or player.CharacterAdded:Wait()
local playerRoot = playerCharacter:WaitForChild("HumanoidRootPart")
local playerHumanoid = playerCharacter:WaitForChild("Humanoid")
repeat task.wait()
if playerRoot and playerHumanoid then
humanoid:MoveTo(playerRoot.Position)
humanoid.MoveToFinished:Wait()
end
until nowPlr ~= player
end
Sorry for this big delay, try this and show me what it prints:
local nowPlr = nil
local function StartToChaseThisPlayer(player)
local playerCharacter = player.Character or player.CharacterAdded:Wait()
local playerRoot = playerCharacter:WaitForChild("HumanoidRootPart")
local playerHumanoid = playerCharacter:WaitForChild("Humanoid")
repeat task.wait()
if playerRoot and playerHumanoid then
print(playerHumanoid.Health.." "..humanoid.Health)
humanoid:MoveTo(playerRoot.Position)
humanoid.MoveToFinished:Wait()
end
until nowPlr ~= player
end