How to make a textbox that everyone can see what I write

How to make a textbox that everyone can see what I write
I am trying to make that

or I want to make a board that when I write something on my textbox and click the textbutton the everything I write on textbox appears on the board

use getpropertychangedsignal to detect when the text has changed
and when the text has changed call a remote to give all the clients the text

1 Like

If you don’t already know a lot about the following, I would recommend learning them to achieve your goal:

RemoteEvents
Chat Filtering
Instance.Changed / GetPropertyChangedSignal
:FireServer()
.OnServerEvent
:FireAllClients()
and .OnClientEvent

With these learned, you can create a UI element, and whenever a player types something in it, you can send the text to the server via remote events(which can then filter the text on the server side to abide by Roblox ToS), and then that server script can send the message via remote events to all the clients, and you could have a script inside the clients that listens for the said event, and updates x text acordingly.

This Tutorial shows how to display text through the developer’s console.

Here is the link .