Hiya! I was interested in making AI's, so I thought I would start easy. Tell me what you think of these Pong AI's. #include <GUIConstantsEx.au3> ; Normal player movement speed = 5 Global $Hard_x = 20, $Hard_Y = 100 Global $Med_x = 120, $Med_Y = 300 Global $Easy_x = 220, $Easy_Y = 100 Global $Ball_x = Random(300, 500, 1), $Ball_y = Random(50, 450, 1) Global $Ball_SpeedX = 6, $Ball_SpeedY = 3 Global $Direction = False Global $HardBlocks = 0, $MedBlocks = 0, $EasyBlocks = 0, $Fails