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.