Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Teleporting between places error unauthorized??

Asked by 3 years ago

Im trying to teleport between places, joining a friends game and im getting an error saying game restricted its unauthorized or something, error code 773.

My code:

local Player = game.Players.LocalPlayer
local FriendsOnline = Player:GetFriendsOnline(12)
for i,v in pairs(FriendsOnline) do
    local clone = game.ReplicatedStorage.Player:Clone()
    clone.Parent = FriendsList
    clone.Text = v.UserName
    clone.MouseButton1Up:Connect(function()
        TeleportService:TeleportToPlaceInstance(v.PlaceId, v.GameId, Player)
    end)
end

1 answer

Log in to vote
1
Answered by
JesseSong 3916 Moderation Voter Community Moderator
3 years ago
Edited 3 years ago

The error is a Roblox issue and could be caused by multiple reasons.

What is error 773?

It is an error code that denotes that users are not allowed to teleport to a game right now. This error could also indicate that users are trying to teleport to a game that is NOT approved by/or under review by Roblox Moderators. It could also be Roblox Servers that are causing the issues.

Ways to Fix the error

  • Try checking back later
  • Try using a VPN (Virtual Private Network)
  • Try checking if the game is approved
  • Teleport Players Individually to Fix this error
0
Any replies will be responded in 6-8 hours JesseSong 3916 — 3y
Ad

Answer this question