|
| 13 Sep 2014 04:19 PM |
How would I do that?
Say I have a random humanoid that walks forward then stop wait(5) walks back
and keeps on doing that |
|
|
| Report Abuse |
|
|
|
| 13 Sep 2014 04:22 PM |
um i think i know what you're making
Prevent account hijacking: http://www.roblox.com/Forum/ShowPost.aspx?PostID=140591710 |
|
|
| Report Abuse |
|
|
| |
|
murcury57
|
  |
| Joined: 30 Jun 2010 |
| Total Posts: 90299 |
|
| |
|
|
| 13 Sep 2014 04:53 PM |
I have a humnaoid
or person/noob just sitting on workspace
how would I make it walk back and forth forever |
|
|
| Report Abuse |
|
|
Tynezz
|
  |
| Joined: 28 Apr 2014 |
| Total Posts: 4945 |
|
|
| 13 Sep 2014 04:56 PM |
local distances={ [1]=Vector3.new(0,0,0); [2]=Vector3.new(8,9,0); }
local humanoid=humhere local running=true while running do wait() for i,v in pairs(distances) do humanoid:WalkToPoint(v) repeat wait() until humanoid:WalkToPoint(v) end end |
|
|
| Report Abuse |
|
|
|
| 13 Sep 2014 04:59 PM |
| attempt to call method 'WalkToPoint' (a userdata value) |
|
|
| Report Abuse |
|
|