I was messing around with coroutines/spawn in ROBLOX Studio, and this script happened to not work.
There is no errors being printed in the Output.
The hint just keeps being destroyed and created endlessly. No numbers are being printed in the Output. The value that a
is should be printing every second.
01 | local a = 0 |
02 |
03 | function myNewThread() |
04 | repeat |
05 | local h = Instance.new( "Hint" , game.Workspace) |
06 | h.Text = "This is a hint!" |
07 | wait( 1 ) |
08 | h:Destroy() |
09 | wait( 1 ) |
10 | until |
11 | a > = 10 |
12 | end |
13 |
14 | spawn(myNewThread()) |
15 |
16 | while true do |
17 | a = a + 1 |
18 | print (a) |
19 | wait( 1 ) |
20 | end |
Thanks in advance.