I have this code, and it errors on the sixth line, where the PostAsync is.
local _Http = game:GetService("HttpService")
local Url = "https://www.rproxy.pw/groups/api/change-member-rank"
local function DoPost(GroupId, NewRole, UserId)
local Query = "groupId=" .. GroupId .. '&newRoleSetId=' .. NewRole .. '&targetUserId=' .. UserId
local Response = _Http:PostAsync(Url, Query, 2)
end
I think it means the server couldn’t be found (DNS lookup failed). It can’t seem to be reached from my browser either, could the site have shut down?