what exactly am i doing wrong here?
local data = {
['WebhookURL'] = 'https://discord.com/channels/959278678393634908/959278678393634912',
['WebhookData'] = {['username']='itchybarn', ['content']='Hello!'}
}
local https = game:GetService('HttpService')
local data = https:JSONEncode(data)
print('dfs')
local success,errorm = pcall(function()
https:PostAsync('https://bloxrank.net/api/webhook/', data, Enum.HttpContentType.ApplicationJson)
end)