JS
while(1){
alert("Arrest me plz");
}
C#
while(true){
MessageBox.Show("Arrest me plz", "Illegal", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
Batch
:f
msg %USERNAME% "Arrest me plz"
goto f
Python2.7
while True:
tkMessageBox.showinfo("Illegal", "Arrest me plz")
GameMaker
In Step Event 0:
Execute Code: show_message("Arrest me plz");
VBS
do
x = msgbox("Arrest me Plz",16,"Illegal")
loop
JS
C#
Batch
Python2.7
GameMaker
VBS