obeydobie
|
  |
| Joined: 13 Oct 2008 |
| Total Posts: 39 |
|
|
| 15 Aug 2011 05:27 PM |
So, I have a group of straight, flat peices named 'motor'. What I want to happen for the motors to gradually speed up, and gradually speed down. Each 'motor' has a Speed Value inside of it. I placed a car on the track (Like a rollercoaster), And It stayed at the original speed I had it set to before I ran the script. Here it is: x = game.Workspace.motor.Speed.Value
x = 1 wait(1) x = 5 wait(0.5) x = 10 wait (0.5) x = 5 wait (0.5) x = 1 wait(1) x = 0 wait(10)
end
So, I would like for you to suggest what I should do. Thank you.
|
|
|
| Report Abuse |
|
Fl0x
|
  |
| Joined: 06 Aug 2010 |
| Total Posts: 5169 |
|
|
| 15 Aug 2011 05:28 PM |
x = game.Workspace.motor.Speed x.Value = 1 wait(1) x.Value = 5 wait(0.5) x.Value = 10 wait (0.5) x.Value = 5 wait (0.5) x.Value = 1 wait(1) x.Value = 0 wait(10)
|
|
|
| Report Abuse |
|