|
| 09 Dec 2013 05:48 PM |
How can i make a timer? Say from 0 to 600
|
|
|
| Report Abuse |
|
|
REM25
|
  |
| Joined: 28 Feb 2010 |
| Total Posts: 3154 |
|
| |
|
robomax11
|
  |
| Joined: 07 Jul 2011 |
| Total Posts: 6828 |
|
|
| 09 Dec 2013 05:50 PM |
numberstart = 600 --THIS IS BASIC TIMER IN SECONDS
while numberstart >0 do numberstart = numberstart - 1 wait(1) end
-- ad other functions n parents n stuf |
|
|
| Report Abuse |
|
|
|
| 09 Dec 2013 06:06 PM |
@Robo Where in the world do i put my parents? Say i put it in a gui |
|
|
| Report Abuse |
|
|
|
| 09 Dec 2013 06:10 PM |
Nvm Dont know what i was thinking >> |
|
|
| Report Abuse |
|
|
|
| 09 Dec 2013 06:16 PM |
What am i doing wrong??
numberstart = 600
while numberstart >0 do numberstart = numberstart - 1 wait(1) script.Parent.Value = numberstart end |
|
|
| Report Abuse |
|
|
|
| 09 Dec 2013 06:18 PM |
numberstart = 600 h = Instance.new("Hint", workspace) while wait(1) do numberstart = numberstart - 1 h.Text = (..numberstart..) end |
|
|
| Report Abuse |
|
|
|
| 09 Dec 2013 06:19 PM |
Studiois playing games on me .. so mad
I think it works |
|
|
| Report Abuse |
|
|
vlekje513
|
  |
| Joined: 28 Dec 2010 |
| Total Posts: 9057 |
|
|
| 09 Dec 2013 06:21 PM |
| script.Parent.IntValue.Value --probably forgot to index your number type |
|
|
| Report Abuse |
|
|
| |
|
vlekje513
|
  |
| Joined: 28 Dec 2010 |
| Total Posts: 9057 |
|
| |
|