Need help with combat

I want my combat system to move the player(attacker) towards the victim or player hit, no matter the direction. I just don’t know what method to use. How would I do it? Here’s a example (game is aba not mine):

2 Likes

You can use Humanoid:MoveTo(position) Example;

Attacker.Humanoid:MoveTo(Target.HumanoidRootPart.Position)

This makes the player walk towards the Targets HumanoidRootPart.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.