So happy. qq All we need now is a way to allow clicks to go through the topbar and allowing us to just set the topbar’s transparency to 1 (white topbar pls.)
Does anyone have a link to the chat script source they use? I’d like to check out their multiline chat thing for my own chat system. :') sniffs
What they use to wrap multiline chat is a member of TextService, but that’s locked, so you’ll need to make your own equivalent. I made one for when I was making my own chat though if you want to use it: local testGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)l - Pastebin.com It has caching built in because that’s something the ROBLOX chat did and I was aiming to emulate the ROBLOX chat as closely as possible functionality-wise. If you don’t like it, feel free to remove it because the code will work without it, and getting something’s text size isn’t very resource intensive to begin with.
Are you doing it from a localscript in StarterPlayerScripts? They run really early, so you may need to wait a little in order to give the corescript enough time to set itself up. The corescript is what disables the topbar, so if it isn’t listening yet, disabling the topbar wouldn’t work.