Restricting teleport service to public game server, what's the issue? Help please

I’m trying to make a simple code teleport thingy, kinda like the admin panel in Spraypaint.

Issue is that I keep getting error code 773 when I’m trying to teleport to a server using the different code. (Not a different place, just a different server)
Output:

I allowed 3rd-party-teleports, still doesn’t work.

local box = script.Parent.EnterID
local label = script.Parent.ServerID
local but = script.Parent.Join
local run = game:GetService("RunService")
local rs = game:GetService("ReplicatedStorage")

but.MouseButton1Click:Connect(function()
	rs.JoinServer:FireServer(tonumber(box.Text))
end)

run.RenderStepped:Connect(function()
	pcall(function()
		label.Text = "ServerID: "..rs.ServerJoinCode.Value
	end)
end)

Help please.

1 Like

The best help I can give is to say that you can simply google the answer. Literally, just google “error 773 roblox fix” and you can get what you need.

1 Like

Uhh alr thanks LOL sorry I didn’t search it earlier

1 Like

Still doesn’t work, kinda confused tbh. I tried for an hour and it’s the same thing.

1 Like