I’m making a custom radio, and when you want to type long text, the text becomes unreadable.
Here’s what it looks like currently when every message is in one line:
My chat system automatically deletes the highest message when a new message gets posted. I plan to use TextService’s :GetTextSize, to help span chat messages on multiple lines.
This would generate a problem though, as there could be extra messages on top which would waste instance count. I prefer my code to be more efficient, so I want the top message to only delete if it’s being clipped by the parent frame’s clipsdescendants. Is there a way to see if an object is being clipped?