New autotyper for discord on mac copy paste it into "script editor" on your mac Make sure script editor has the permission in settings on "accesibility" to send key strokes tell application "System Events" set texttosay to "Sample Text" display dialog "Text to type:" default answer "white: " set texttosay to the text returned of the result repeat activate application "Discord" delay 0.5 repeat 1000 times keystroke texttosay delay 1 keystroke return end repeat display dialog the "Do you want to quit?" buttons {"Continue", "Quit"} default button 1 if the button returned of the result is "Quit" then exit repeat end if end repeat