Color/Coordinates Scanner Found on AutoIt Forums.
Ctrl + 1 = Copy Hex color to clipboard.
Ctrl + 2 = Copy x and y coordinates to clipboard.
Ctrl + 3 = Copy Decimal color to clipboard.
Ctrl + 4 = Copy all infos in script window to clipboard.

Code:
#include <GUIConstants.au3>
#Include <Misc.au3>
Global = 100, = 100,
HotKeySet("{ESC}", "_Exit")
= GUICreate("", , /2, "", "", BitOR(, ), )
= GUICreate("", , /2, "", "", BitOR(, ), )
GUISetBkColor(0xFFFFFF)
= GUICtrlCreateLabel("", 5, 5, 95, 95)
GUICtrlSetBkColor(-1, 0xFFFFFF)
GUICtrlSetFont(-1, 5, 400, 0, "MS Sans Serif")
GUISetState(@SW_SHOW, )
GUISetState(@SW_SHOW, )
While 1
= TimerInit()
= MouseGetPos()
= PixelGetColor(,)
= Hex(, 6)
= "X: " & & " Y: " & & @CRLF & "Hex: " & & @CRLF & "Dec: " &
GUISetBkColor(, )
WinMove(, "", ( - ) - 5, ( - ) - 5)
WinMove(, "", ( - ) - 5, ( - /2) - 5)
+= TimerDiff()
If > 200 Then
GUICtrlSetData(, )
= 0
EndIf
If _IsPressed("11") And _IsPressed("31") Then ClipPut()
If _IsPressed("11") And _IsPressed("32") Then ClipPut( & " " & )
If _IsPressed("11") And _IsPressed("33") Then ClipPut()
If _IsPressed("11") and _IsPressed("34") Then ClipPut()
WEnd
Func _Exit()
Exit
EndFunc
I in no way take credit for this.