This works...
+ Code Snippetdo
temp = CreateText("One")
SetTextPosition(temp, 10, 10)
temp = CreateText("Two")
SetTextPosition(temp, 10, 20)
temp = CreateText("Three")
SetTextPosition(temp, 10, 30)
Sync()
loop
but what happens to those first two text entities? Are they just orphaned and can never be referenced again? And is that "bad"? As in, will it clog up memory, or some such?