How can I Make that whenever you attack an npc it chase the player that attacked him

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

yeah the error i think its not your fault


But Still not works

Maybe it has something to be with the hip height?

Try to replace it to this:

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

Yeah, try to test this script on basic dummy, without animation, and look if it works.

With the old follow script yeah the orc was moving

Tried this code?
This code should work.

Last Code Works?

Oh, maybe i understand the error, last code should work.

sorry for the delay but no sadly the code does not work ):

1 Like

Any errors? Sorry for big delay, it was litteraly 3 am for me.

its ok. no the is no errors

Try to test first script again to check if it still works with this one.

I already did and yes it works I was thinking and maybe its because It only goes to the player position once and it does not keep moving

Can you pls try to oof yourself after npc started to chase you?

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

I tested it with this script and it does not work (sorry for the delay)

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

And show me what it prints.

Now it works thank you so much for the help!