yeah its says my place is off but uh i have this
its from asset manager thing
now that does NOT happen most of the times. Try making a new sub-place and try tping there. or tell your friends to try tp there.
still the same
ok my pea head cant think.
Maybe bug and asking to staff can solve.
If you are getting a restricted place teleport error, it should only mean 1 of 2 things.
- You don’t have access to the place you are teleporting to (or it’s private)
- You can’t join it because the max player count has been reached
First make sure the above is correct, but there is however someone with a familiar error in this post
They didn’t solve the issue and someone linked this post as it was a Roblox issue (these are old posts). I don’t seem to have this issue on my side, so I’m not so sure it’s on Roblox.
You should use this to figure out what exactly is the issue with your teleport error (which I found in the above post).
oh wow nobody found solution.
1.I have access + its public
2. its empty
Then I wuld use the TeleportService.TeleportInitFailed
property (which I linked in the above post).
to figure out exactly what the cause of the issue is. That way it would be easier for you to figure out how to fix the problem. If you claim that all of that’s true I am unable to really do much to help.
nope its TOTALY not in my network cuz my 4 friends expirienced the same
god please help us and give us real script thats works
Fixing error code 773 from script seems like impossible for now.
oh wow moderator is approving my message! wow what did i said?
this is like 30 long post maden with just 1 hour lol
:T well … what im gonna do? is this like for every game now?
Send a message to @Bug-Support with including these
- Repro Steps
- Expected Behavior
- Actual behavior
- Where
- When
- Videos and images
can u explain it a little more, i dont understand the repro steps expe- EVERYTHING!
Repro steps are simply how does the thing / bug happen (teleporting player through teleportservice). Expected behavior is what would you expect to happen, in this case a teleport to other place. Actual behavior would be the error “attempted to teleport to a place that is restricted” Where, link your place, When, put your time, as images paste your kick error screen
I have no clue why everyone is always trying to cram everything in one line …
Create your definitions then implement them lower in the script.
Top down programming!
local tService = game:GetService("TeleportService")
local placeId = 10072127013
local pad = script.Parent
local function port(player)
tService:Teleport(placeId, player)
end
pad.MouseClick:Connect(port)
If this works it’s your 1st line that has the error.
And yes to 3rd party. Step back to what you know works when looking for bugs.
Try to use TeleportService:TeleportAsync() and make sure all the places that you will use are public.
(Go into each place and press : File > Publish to Roblox)
TeleportAsync() Is a function more powerfull than some variants of Teleport()
Here’s an exanple of the using of TeleportAsync()
local TpService = game:GetService("TeleportService")
local PlaceID = 10072127013,
script.Parent.Triggered:Connect(function(plr)
local PlayerTable = {plr}
TpService:TeleportAsync(PlaceID,PlayerTable)
end)`