Trying to fire TextBox text into server, returns the user that edited it

I want to simply make a developer console for my game, using textboxes to edit player data and stuff, basically, you insert number and player name, and press one of the 4 buttons.

But i have this problem, where when i fire the textbox’s text to the server, for example, the localscript, fires the playername (textbox value), numbervalue (textbox value as well), and the stat that it wants to change, which works fine, but the playername and numbervalue, both return the player (instance), how do i fix?

Local Script:
image

Server Script:

Always the first argument of OnServerEvent will be the player who fires the event, if you don’t need it, change the part of the function for this:

function(_, playername,numbervalue, statchange)