-
What do you want to achieve?
I am having issues with this error. I am trying to teleport a party of 4 to another game. -
What is the issue?
I keep on getting the error, " Failed to reserve server: HTTP 403 (Forbidden)". Both places have HTTP Requests on, API Services on, and Third Party Sales. The script creates a private server on the game its teleporting too. -
What solutions have you tried so far?
I have looked everywhere yet, nothing works for me. I have also tried it in the actual game on Roblox. The same error popped up. Here is the part of the script that is giving errors.
elseif Command == "Ready" then
if Parties:FindFirstChild(Player.UserId.."'s party") ~= nil then
local ReserveId = TeleportService:ReserveServer(18236960669)
local PlayersToTP = {}
for i,v in pairs(Parties:FindFirstChild(Player.UserId.."'s party").Party:GetChildren()) do
if v.Value ~= "None" then
table.insert(PlayersToTP,Players:GetPlayerByUserId(tonumber(v.Value)))
end
if i == #Parties:FindFirstChild(Player.UserId.."'s party").Party:GetChildren() then
TeleportService:TeleportToPrivateServer(18236960669,ReserveId,PlayersToTP)
end
end
end
end
end)