UX Guideline: Performance — Third Party Scripts. Platform: Web. Description: External scripts can block rendering. Do: Load non-critical scripts async/defer. Don't: Synchronous third-party scripts. Good Example: async or defer attribute. Bad Example: <script src='...'> in head. Severity: Medium.