Yes maybe they broken because I tested that script and that’s work for me.
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😉
Thank you that is really nice
No problem so wait for message.
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.
Yes maybe he forgot do that. Must be enabled to work.
Im sure its about this setting.
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.
Please tel us the error you are getting when trying to teleport thanks.
Thank you are the best this worked fine Sorry I really new in programming
No problem I am so happy is work! Good luck and your all jobs😉
No problem at all! Happy to help We were all new at some point.