Mezur
|
  |
| Joined: 29 Jun 2015 |
| Total Posts: 3040 |
|
|
| 03 Apr 2016 02:33 PM |
local char = script.Parent local human = char.Humanoid
marker1 = function() human:MoveTo(Vector3.new(89.42, 0.6, -2.71)) end
marker2 = function() human:MoveTo(Vector3.new(84.62, 0.32, 53.29)) end
while wait() do marker1() marker2() end
For some reason it stops at marker1 and wont go to marker2
|
|
|
| Report Abuse |
|
|
Mezur
|
  |
| Joined: 29 Jun 2015 |
| Total Posts: 3040 |
|
| |
|
Mezur
|
  |
| Joined: 29 Jun 2015 |
| Total Posts: 3040 |
|
| |
|
Mezur
|
  |
| Joined: 29 Jun 2015 |
| Total Posts: 3040 |
|
| |
|
spacegang
|
  |
| Joined: 03 Jul 2011 |
| Total Posts: 3863 |
|
|
| 03 Apr 2016 02:40 PM |
| calm down dude, just be patient. it takes a while for help to come on this sub-forum |
|
|
| Report Abuse |
|
|
|
| 03 Apr 2016 02:48 PM |
while wait() do marker1() marker2() end
ur calling marker1 and marker2 at the same time with no wait??? how is the humanoid gonna have any time to walk anywhere? |
|
|
| Report Abuse |
|
|
|
| 03 Apr 2016 02:49 PM |
get.out.
http://www.roblox.com/internet1-item?id=393244197http://www.roblox.com/internet2-item?id=393244224http://www.roblox.com/internet3-item?id=393244262 |
|
|
| Report Abuse |
|
|
Mezur
|
  |
| Joined: 29 Jun 2015 |
| Total Posts: 3040 |
|
|
| 03 Apr 2016 02:50 PM |
so it should be:
while wait() do marker1() wait (10) marker2() end
?
|
|
|
| Report Abuse |
|
|
|
| 03 Apr 2016 02:50 PM |
while true do marker1() wait (10) marker2() wait(10) end |
|
|
| Report Abuse |
|
|