Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make this countdown?

Asked by
faruque 30
9 years ago

How do I make it count backward and show the text at the same time.

for i= 1,20 do
    wait(1)
    print(i)
script.Parent.Text= i
end

2 answers

Log in to vote
0
Answered by
Lacryma 548 Moderation Voter
9 years ago
for i= 20, 1 do
    wait(1)
    print(i)
script.Parent.Text= i
end

Reverse it.

0
Nope that doesn't work. faruque 30 — 9y
Ad
Log in to vote
0
Answered by
faruque 30
9 years ago

**@Duelingwarlord ** but that doesn't work.

Answer this question