Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Zombie not moving back?

Asked by
yoshi8080 445 Moderation Voter
9 years ago

I wanted the zombie to move in a pattern :c

01local zombie = game.Workspace.Zombie
02local zombie = zombie.Zombie
03while wait() do
04zombie:MoveTo(workspace.Spawn.Position)
05print("Moved To Spawn")
06wait(5)
07zombie:MoveTo(workspace.Point.Position)
08print("Moved To Point")
09wait(5)
10zombie:MoveTo(workspace.End.Position)
11print("Moved To End")
12end

Script works after moving to the spawn point and it goes to the point, but moves back onto the spawn. Help? It's a script in workspace moving the zombies

Answer this question