Hi! I am trying to send the information of a player-object from the client to the server using FireServer. When I do this, it returns the error ‘attempt to concatenate nil with string’. Here is my code; Any help is great.
-- SERVER
function M.SendData(player, data)
local succ, err = pcall(function()
local Data = {
["embeds"] = { {
["title"] = player.Name .. "'s application", -- Particular line that errors.
-- CLIENT
Events.Application.SendAppRemote:FireServer(M.Data.AnsweredQuestions) -- Doesn't error. I don't believe that the Data is the problem.