The function :FireServer() does not require a player argument unlike the :FireClient() function which does, therefore the corresponding event .OnServerEvent does return a player in the first argument, after this would be any thing you sent over as well.
The problem with your script is because this function doesnt require a player argument you are sending two things to the server, the player and example. The most likely cause of your problem is that on the receiving end of this you are assigning the first returned value expecting it to the the string but it is actually the player, then the next value would be that string.
tl;dr
1 | local example = script.Parent.Parent.user.Text |
2 | game.ReplicatedStorage.aaa:FireServer(example) |