Fantasy computer for making, playing and sharing tiny games. · By Nesbox
function wave(text, x, y, amp)
for i=1, #text do
local c = text:sub(i, i)
print(
c,
x+i*6,
y + amp*math.sin((time()+i*60)/180)
)
end
I like it! =)
Awesome good fun, thanks!