Hey guys,<br /><br />For my custom chat room node I'm making. I am using<br /><br />
var new = RichTextLabel.new()<br /> new.set_script(load(&quot;res://Scripts/TooltipExtendRichTextLabel.gd&quot;))
<br /><br />Inside my tooltipExtendRichTextLabel.gd I have a basic _draw(): func there (to hide the scrollbar)<br /><br />Would this is be okay if I were to say, have 100 or so of these RichTextLabel nodes? Or would there be a better away about doing this? Reason I ask is because each time a player sends a message in chat, this is created. I will have a limit of around 100 or so messages max on screen... so that might help, but just not sure if set_script is the proper way to do this, thank you!<br />