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

Basic spawn function won't work?

Asked by
Discern 1007 Moderation Voter
9 years ago

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.

01local a = 0
02 
03function myNewThread()
04repeat
05    local h = Instance.new("Hint", game.Workspace)
06    h.Text = "This is a hint!"
07    wait(1)
08    h:Destroy()
09    wait(1)
10until
11    a >= 10
12end
13 
14spawn(myNewThread())
15 
16while true do
17    a = a + 1
18    print(a)
19    wait(1)
20end

Thanks in advance.

Answer this question