Emergency system RemoteEvent not sending variables

Hello dear dev community, I am trying to make a 911 system but the RemoteEvent only sends the pure strings, not the variables. I have already tried several methods but nothing worked.

The “send” button script:
image

The “handler” script (receives the data"
image

Explorer:
image

The variables are strings, they are Text, also it is concatinated, so it will be one big string

But how can I get it to fully display on the textlabel?

Your send button script should be in a LocalScript, no? Unless you are sending it from Server to Client. But then I don’t see why you would use the send button for that. Correct me if I am wrong though.

I could only do :FireServer if I use a LocalScript

Why not use that then? I don’t think you can get the player’s mouse via ServerScripts.

You can use bindable events to do server-server

Editing text through typing does not replicate to the server, so the server still sees those “variables” as what they were at the start. You’d have to send those variables to the server through OnServerEvent and FireServer.