Originally, I had a post with three or four other simple codes...but my computer restarted....so now you only get one for now More later.

This is a video I made a long time ago.


Make sure timer is ENABLED
Timer1_Tick:
Code:
label1.left -=5
 
if label1.left <= -width then
 
label1.left = width
 
End if
'Scrolls label from Left To Right

 
label1.up -=5
 
if label1.up <= -width then
 
label1.up = width
 
End if
'Scrolls label from Bottom to Top