Why wont my question GUI not work?

@HowlingToucan see what I said, the script is correct, but add player before question:

local rs  = game:GetService("ReplicatedStorage")

rs.Remotes.QuestionR.OnServerEvent:Connect(function(Player,Question, AnswerA, AnswerB, AnswerC, AnswerD)
   print(Question)
   print(AnswerA)
   print(AnswerB)
   print(AnswerC)
   print(AnswerD)
end)