> For the complete documentation index, see [llms.txt](https://noskill.gitbook.io/titanfall2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noskill.gitbook.io/titanfall2/modding/user-interface/menus/whats-new-and-spotlight.md).

# Whats new and Spotlight

![A screenshot of the main menu showing the Whats New and Spotlight elements](/files/-M8eAtGTG5axCuIZwXcH)

## Tools

You will need the:

* [Titanfall VPK Tool](/titanfall2/intro/duction/tools.md)
* [VPK renamer / move (Optional)](/titanfall2/intro/duction/tools.md)

## Whats New

Up in the top right hand corner there is a UI element showing off the new elements of the game. The assets for the UI element are located in the games **rpack** files which we dont have access to, however we can remove it since the game is no longer receiving updates.

To remove the UI element you will need to unpack `englishclient_frontend.bsp.pak000_dir.vpk` and edit the file `\resource\ui\menus\panels\mainmenu.res`.

Find the `WhatsNew` section in the file:

```
WhatsNew
    {
        ControlName				RuiPanel
        ypos					380
        wide					740
        tall					125
        rui                     "ui/whats_new.rpak"
        visible					1

        pin_to_sibling			PinFrame
        pin_corner_to_sibling	TOP_RIGHT
        pin_to_sibling_corner	TOP_RIGHT
    }
```

Set visible to 0:

```
visible					0
```

You can now repack your VPK and you will no longer see the **Whats New** UI element.

## Spotlight

On the right side of the screen you will 3 UI elements grouped together:

* News - Frontier News Network: Operation Endeavor
* Rendy Gaming fires away in his Kraber G100 Montage.
* Check out the latest weapon skins

To remove these elements you will need to unpack `englishclient_frontend.bsp.pak000_dir.vpk` and edit the file `\resource\ui\menus\panels\spotlight.res`.

There are 3 sections in this file:

* `SpotlightLarge`
* `SpotlightSmall0`
* `SpotlightSmall1`

To hide each section set `visible` to 0

```
visible					0
```

You can now repack your VPK and you will no longer see the **Spotlight** elements.

![A screenshot of the main menu with both Whats New and Spotlight removed](/files/-M8eFjLEsws_GjzNRwG0)
