I need this script, I want the image to change when i change radio
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 346, 177, 192, 124)
$Pic1 = GUICtrlCreatePic("img\1.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$green = GUICtrlCreateRadio("green", 184, 56, 113, 17)
$red = GUICtrlCreateRadio("red", 184, 96, 113, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
If GUICtrlRead($green) = $GUI_Checked Then $Pic1 = GUICtrlCreatePic("img\1.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
If GUICtrlRead($red) = $GUI_Checked Then $Pic1 = GUICtrlCreatePic("img\2.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd