AutoHotKey Script (Clipboard Typer)

^!v::  ; Ctrl+Alt+V se trigger hoga
ClipWait  ; Wait until clipboard has content
Loop, parse, clipboard, `n, `r
{
    SendInput %A_LoopField%
    SendInput {Enter}
    Sleep, 50  ; Delay between each line (you can reduce/increase)
}
Return

→ Copy the above code and paste in Notepad, then save as typer.ahk