As I said before the including function is messed up, take out the include and it will work.
This brings it down to one error that isnt hard to fix, it forgot to obfuscate a call to Phi()
Just take the call out of the region so you know the function name
#region
Phi()
#region
Global $Fib1 = 0
Global $Fib2 = 1
$Window = GUICreate("Fibonacci", 150, 50, -1, -1)
$LabelFib = GUICtrlCreateLabel("0", 10, 10, 120, 15)
$LabelPhi = GUICtrlCreateLabel("0", 10, 25, 120, 15)
GUISetState()
While 1
GUICtrlSetData($LabelFib, Fibonacci())
GUICtrlSetData($LabelPhi, Phi())
Sleep(500)
WEnd
Func Fibonacci()
Local $Temp
$Temp = $Fib2 + $Fib1
$Fib1 = $Fib2
$Fib2 = $Temp
Return($Fib2)
EndFunc
Func Phi()
Return($Fib2/$Fib1)
EndFunc