//Argument0 = Text you want to scroll //Argument1 = Speed //Scrolls text horizontally //Usage:scroll_text(str,speed) //Description: Scrolls argument0 //Must be placed in the DRAWING event //Requires an object //Text is placed in object's position { draw_text(x,y,argument0) x += argument1/2; if (x >= room_width) { x = -(string_length(argument0)*2) } }