MTamidex
|
  |
| Joined: 17 Oct 2013 |
| Total Posts: 1092 |
|
|
| 04 Aug 2015 08:18 AM |
local model = game.Workspace.Model local finish = model.Finish local Platform = model.Platform local start = model.Start local bodyposition = Platform.BodyPosition
while wait(2) do bodyposition.position = start.Position wait(2) bodyposition.position = finish.Position end
--i want Platform to move faster Can you help me? |
|
|
| Report Abuse |
|
|
Exine
|
  |
| Joined: 01 Apr 2013 |
| Total Posts: 3783 |
|
|
| 04 Aug 2015 08:23 AM |
lower wait time?
-I'm talented without the talented part. |
|
|
| Report Abuse |
|
|
MTamidex
|
  |
| Joined: 17 Oct 2013 |
| Total Posts: 1092 |
|
| |
|
MTamidex
|
  |
| Joined: 17 Oct 2013 |
| Total Posts: 1092 |
|
|
| 04 Aug 2015 08:31 AM |
I lowered it to 1.5
but platform doesnt even reach the other end before it starts to come back
|
|
|
| Report Abuse |
|
|
|
| 04 Aug 2015 08:32 AM |
did you change both of the wait times
~The LMaD Deer~ |
|
|
| Report Abuse |
|
|
Tycooons
|
  |
| Joined: 13 Aug 2014 |
| Total Posts: 5871 |
|
|
| 04 Aug 2015 08:38 AM |
repeat bodyposition.position = bodyposition.position + whatever amount here wait(.3) until bodyposition.position = whatever amount here
could do a repeat |
|
|
| Report Abuse |
|
|
MTamidex
|
  |
| Joined: 17 Oct 2013 |
| Total Posts: 1092 |
|
| |
|
Tycooons
|
  |
| Joined: 13 Aug 2014 |
| Total Posts: 5871 |
|
|
| 04 Aug 2015 08:52 AM |
You could do:
local model = game.Workspace.Model local finish = model.Finish local Platform = model.Platform local start = model.Start local bodyposition = Platform.BodyPosition
while true do repeat wait(.01) until bodyposition.position = start.Position wait(2) bodyposition.position = start.Position repeat wait(.01) until bodyposition.position = start.Position wait(2) bodyposition.position = finish.Position end |
|
|
| Report Abuse |
|
|
MTamidex
|
  |
| Joined: 17 Oct 2013 |
| Total Posts: 1092 |
|
|
| 04 Aug 2015 09:05 AM |
| thanks guys. appreciate it |
|
|
| Report Abuse |
|
|