local HttpService = game:GetService("HttpService") local InviteCode = "PUT DISCORD INVITE CODE HERE, NOT THE LINK JUST THE CODE" http.request({ Url = "http://127.0.0.1:6463/rpc?v=1", Method = "POST", Headers = { ["Content-Type"] = "application/json", ["Origin"] = "https://discord.com" }, Body = HttpService:JSONEncode({ cmd = "INVITE_BROWSER", args = {code = InviteCode}, nonce = HttpService:GenerateGUID(false) }) })