|
| 28 Nov 2014 05:05 PM |
I just need to make this /1000. My Mind Goes blank when i try to think of ways to do it.
b = script.Parent;
for i = 15, 0, -1 do wait(1) b.Text = i end Example :
1000/1000
The 1000 on the left is the one that decreases by 1. The One on the Right Doesn't decrease at all |
|
|
| Report Abuse |
|
|
Quasar99
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 9328 |
|
|
| 28 Nov 2014 05:11 PM |
b = script.Parent;
for i = 15, 0, -1 do wait(1) b.Text = i .. "/1000" end |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2014 05:26 PM |
Ok now i tried adding a loop that if the power reaches 0 to End the Script. This is all i got :
while true do if i == 0 then print("0") end end |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2014 05:36 PM |
b = script.Parent;
for i = 15, 0, -1 do wait(1) b.Text = i .. "/1000" end
print("0") |
|
|
| Report Abuse |
|
|
| |
|
| |
|