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

how do I do this print?

Asked by
zValerian 108
5 years ago
Edited by minikitkat 5 years ago

how do I do one print every second? I tried this but it doesnt worK:

while true do
for i = 1 do
print("test'')
end
end

it doesn't work at all. please help me!

0
thank you zValerian, very cool green271 635 — 5y
0
help me with the skript plz zValerian 108 — 5y
0
wink User#23365 30 — 5y
0
you didn't even spell incapaz correctly bhqpping 80 — 5y

2 answers

Log in to vote
3
Answered by 5 years ago
Edited 5 years ago
while wait(1) do --basically while true do, but microscopically more efficient cuz the wait is here too xd and also makes you look pro idk
    print("Whatever bro")
end

P.S., we aren't insensitive, you're just bein a meanie. Don't be a jerk uwu

0
you should of seen zValerian 108 — 5y
1
I did. Don't be a meanie :3 minikitkat 687 — 5y
0
bad, -1 (not really) User#19524 175 — 5y
0
It is not good practice to encourage new developers to use while wait do. It causes them to miss the point of the conditional and its power. User#21908 42 — 5y
0
he's just joking User#19524 175 — 5y
Ad
Log in to vote
0
Answered by 5 years ago
while true do
print("Rock the Boat")
wait(1)
end
1
No explanation = not good answer. User#21908 42 — 5y
0
Depends on who you are 0oEagleo0 -3 — 5y

Answer this question