How do I align an ImageLabel with text in a TextLabel?

How do I line up an Image with text? I want to create something like this.
example
I can’t think of a way to go about this.

If you’re expecting your text never to span more than one line then I use a frame with a UIListLayout and just have the layout handle the in-lining of text. Just my lazy way of doing it.

The layout method doesn’t necessarily work with every case, especially text that you may expect to span multiple lines or not depending on available screen space and such. For those cases I just use rich text and go on with my day. That or, like in your case, I’d probably use a more explicit GUI that doesn’t need me to in-line but I can still show the player obviously what key they need to use.