-
What do you want to achieve? i want to make a player move in a zigzag towards a point
-
What is the issue? i dont know how to do it
-
What solutions have you tried so far? i have searched the internet all over and i cannot find anything
i want the player (blue) to teleport to all ends of the line in green (the arrows) to reach the enemy destination (red) when a tool is activated
a bit like kaigaku from demonfall if you know that game and his move
how do i go about doing this? any help will be much appreciated
xDeltaXen
(xDeltaXen)
#2
im confused on how to make it be along the ground
drilinz
(drilinz)
#4
Use Humanoid:MoveTo()
Basically:
game.Workspace.DummyName.Humanoid:MoveTo(game.Workspace.point1.Position)
game.Workspace.DummyName.Humanoid.MoveToFinished:Wait()
game.Workspace.DummyName.Humanoid:MoveTo(game.Workspace.point2.Position)
game.Workspace.DummyName.Humanoid.MoveToFinished:Wait()
game.Workspace.DummyName.Humanoid:MoveTo(game.Workspace.point3.Position)
And keep going till you have reached your destination.