Chat modifications

I’ve already added custom imagelabels as seen here
chat

but now I’ve run into a problem with the chat being constantly placed above all UI (which was expected, it’s now just the next problem)

Is it possible to render Core UI components such as the chat underneath PlayerGUI UI elements in some fashion? Or is the solution just to disable them temporarily? That’s what I’ve been doing for now, but it’s not as clean as I’d like, as you’d expect.

This is with the chat faded out, but you can see stuff like this could get annoying, especially with lots of left-justified UI

1 Like

You can make the chat appear behind other UI by setting the DisplayOrder of the guis.

Before
image

After
image

The default DisplayOrder for the chat gui is 6, so setting the display order on your guis to something larger than that should make them appear above the chat.

3 Likes

'Preciate it man, you’re a legend.