| |
|
pauljkl
|
  |
| Joined: 23 Oct 2008 |
| Total Posts: 9364 |
|
|
| 09 Jun 2013 08:59 AM |
| Well you have a generic for loop at the top, if you don't want it repeating, why is that there |
|
|
| Report Abuse |
|
|
| |
|
ForceSky
|
  |
| Joined: 30 Jul 2012 |
| Total Posts: 2379 |
|
|
| 09 Jun 2013 09:03 AM |
A for loop.
for i = 5, 1, -1 do
It's supposed to repeat. Do this, and edit it to your liking
local m = Instance.new("Message", Workspace) for i = 5, 1, -1 do m.Text = tostring(i) wait(1) end
That will make the message text 5, 4, 3, 2, 1. |
|
|
| Report Abuse |
|
|
pauljkl
|
  |
| Joined: 23 Oct 2008 |
| Total Posts: 9364 |
|
|
| 09 Jun 2013 09:03 AM |
'for i = 5, 1, -1 do'
Should repeat 5 times using that |
|
|
| Report Abuse |
|
|
ForceSky
|
  |
| Joined: 30 Jul 2012 |
| Total Posts: 2379 |
|
|
| 09 Jun 2013 09:04 AM |
| In his script, the countdown is already built in to his loop, so the countdown repeats five times. |
|
|
| Report Abuse |
|
|
| |
|
ForceSky
|
  |
| Joined: 30 Jul 2012 |
| Total Posts: 2379 |
|
| |
|
|
| 09 Jun 2013 09:36 AM |
wow rly bro sthap
script.Parent.Five:play() p=script.Parent m = Instance.new("Message",Workspace) m.Text = "Five" wait(1) p.Five:play() wait(3) p.Five :stop() p.Four:play() m.Text = "Four" wait(1) p.Four:Stop() wait(3) p.Three:play() m.Text = "Three" wait(1) p.Three:Stop() wait(3) p.Two:play() m.Text = "Two" wait(1) p.Two:Stop() wait(3) p.One:play() m.Text = "One" wait(1) p.One:Stop() wait(3) m:remove() -- add the rest. no end here. |
|
|
| Report Abuse |
|
|
| |
|