how do I do one print every second? I tried this but it doesnt worK:
1 | while true do |
2 | for i = 1 do |
3 | print ("test '' ) |
4 | end |
5 | end |
it doesn't work at all. please help me!
1 | 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 |
2 | print ( "Whatever bro" ) |
3 | end |
P.S., we aren't insensitive, you're just bein a meanie. Don't be a jerk uwu
1 | while true do |
2 | print ( "Rock the Boat" ) |
3 | wait( 1 ) |
4 | end |