How to remove default xbox button selection GUI?

When a button is selected using the controller a blue rectangle appears around the button.
This is very good for debugging,but I don’t want it in the final version.
image
Ready button is being selected

How do I disable this?

1 Like

The PlayerGui has a property called SelectionImageObject. You can set the property to an invisible frame to remove the outline.

Player.PlayerGui.SelectionImageObject = TransparentFrame
9 Likes