|
| 11 Mar 2012 10:45 AM |
Hello, I need help with this because something's wrong.
for i = 10,1,-1 do x = Instance.new("Hint") x.Parent = game.Workspace x.Text = i wait(10) x:Remove()' end
I'm trying to make it countdown from 10 to 0 and at 0 it should be removed. Post any suggestions/help down below! Thank you! |
|
|
| Report Abuse |
|
|
|
| 11 Mar 2012 11:27 AM |
for i = 10,0,-1 do x = Instance.new("Hint", workspace) x.Text = i wait(1) end x:Destroy()
|
|
|
| Report Abuse |
|
|
|
| 11 Mar 2012 11:48 AM |
It worked, thank you! ________________No need to post more suggestions_____________________________ |
|
|
| Report Abuse |
|
|