Help with discord webhooks

localscript:

game.ReplicatedStorage.Appointment:FireServer(script.Parent.Parent.Parent.Parent.Info.MeetingWith.Value,script.Parent.Parent.Parent.Parent.Info.Reason.Value,script.Parent.Parent.Parent.Parent.Info.Urgent.Value)

serverscript:

game.ReplicatedStorage.Appointment.OnServerEvent:Connect(function(plr,meetingwith,reason,urgency)
	local http = game:GetService("HttpService")
	local Data = {
		["content"] = "User: "..plr.Name.."\nRequesting: "..tostring(meetingwith).."\nReason: "..tostring(reason).."\nUrgency: "..tostring(urgency)
	}

	Data = http:JSONEncode(Data)

	http:PostAsync("", Data)
end)

discord message:
image

Btw, the values stored in info are stringvalues.

What do you need help with? It looks as if everything is fine.

Could you give a little more context? There is literally no question provided.

Sorry bout that. So it messes up were the words should be put

Nevermind my previous post, I misread :sweat_smile: have you put the wrong values in the MeetingWith, Reason, Urgent values?

No. I checked. Idk why this is happening. :confused: