Teleporting Between Places dont work

Yes maybe they broken because I tested that script and that’s work for me.

1 Like

Let me share my script that works for this. I had a problem similar to this where I could not teleport.
local pad = script.Parent
local teleportTo = workspace.TeleportLocation — change this to the name of the object that you want to teleport to in the workspace.

pad.Touched:connect(function(hit)
local humanoid = hit.Parent:FindFirstChild(“Humanoid”)
if humanoid then
local humanoidRoot = hit.Parent:FindFirstChild(“HumanoidRootPart”)
if humanoidRoot then
humanoidRoot.CFrame = teleportTo.CFrame
end
end
end)

Thank you for all the answers. I tried it again on a test game. I get the error 773. All my worlds are public

What do you mean it’s not work?

When I go on the teleport part. Roblox freezes, shutdown or I get the error 773.

I will need time to fix this error. I will make teleport part and script that if is work I will with honor give you that video😉

1 Like

Thank you that is really nice :smiley:

No problem so wait for message.

1 Like

That means the place is private or closed.

Yes I thing. I will need to test that.

Its about game settings.
Game Settings > Security > Allow Third Party Teleports
Enable “Allow Third Party Teleports” and Then it will work.

2 Likes

Yes maybe he forgot do that. Must be enabled to work.

Im sure its about this setting.

2 Likes

Or it could be the fact that there is no debounce, when touching the part… causing it to send multiple request?

I dont think so. That must be about this setting.

If there is no debounce, TeleportService is not responding.

As you can see.

Please tel us the error you are getting when trying to teleport thanks.

Thank you are the best this worked fine :smiley: Sorry I really new in programming

No problem I am so happy is work! Good luck and your all jobs😉

1 Like

No problem at all! Happy to help :slight_smile: We were all new at some point.

1 Like