I recommend using pcalls like this over how you are using them.
local success, response = pcall(httpService.PostAsync, httpService, webhookURL, jsonData, Enum.ContentType.Application.Json)
Then you can do print(response)
to see what was returned from the request.
Take a look at this post if you would like to read more about pcalls:
1 Like