When a player change his Screen Size it's print the old Size and the new size.
hook.Add( "OnScreenSizeChanged", "PrintOld", function( oldWidth, oldHeight )
print( oldWidth, oldHeight ) -- Prints old width and heightprint( ScrW(), ScrH() ) -- Prints new width and heightend )