Advice to learn something, use included help file, in scite text editor press F1, with lots of examples, i always look in the index section some functions to check sintax.
Code:
$gui = GUICreate("",200,200)
$label = GUICtrlCreateLabel("Author:Something",0,155,200,35)
GUICtrlSetFont($label,15,700,2,"Cooper")
GUICtrlSetCursor($label,"Hand")
GUISetState()
$website = "www.elitepvpers.com/forum/members/3449101-elmarcia.html"
While 1
$msg = GUIGetMsg()
If $msg == -3 Then Exit 0
if $msg == $label Then
ShellExecute($website)
EndIf
WEnd