How to post in next line in discord from roblox?

Hello I used post a sync and posted some messages, but I want some lines to be in next line, instead of different messages, example:
image

Its 1 message typed my me, rule 1 is in line 2, rule 2 is in line 4, so I want to add enter function, means next line how do i do it? does
work? or work?

1 Like

β€œ\n” makes you go down a line.
β€œLine 1 \n Line 2”

2 Likes

try this

local data = {
   content = "message1 here\n message 2 here\n message 3 here",
   username = "webhook name"
}
local data2 = JSONEncode(data)
game:GetService("HttpService"):PostAsync("webhook url", data2)
1 Like