Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

TELEPORT FAIL ERROR:ID 773. Im making game like camping. Can you help me?

Asked by 4 years ago

Hi there im new. And i making place look like camping(This place is horror) And i maked teleporting from first map to another. And i maked script, but it dont works, says. Teleport Fail error id:773 place restricted. But i checked and it not restricted. Please, help me

local teleportservice = game:GetService("TeleportService") function ontouch(hit) if hit.Parent:FindFirstChild("Humanoid") then print("Teleportaitmeplz") local player = game.Players:GetPlayerFromCharacter(hit.Parent) teleportservice:Teleport(1380792098,player) end end script.Parent.Touched:Connect(ontouch)

0
Your placeId isn't even a place, it's a pirate shirt. So yeah, that's not gonna work. Check your digits. EmilyBendsSpace 1025 — 4y
0
Thanks!!!! Bro! rostikq2 0 — 4y

1 answer

Log in to vote
0
Answered by
Rynappel 212 Moderation Voter
4 years ago
Edited 4 years ago

Is the game that your trying to teleport to public/exisiting? Trying using this script:

local TeleportService = game:GetService("TeleportService")
local Place = --Put the game id of where ur teleporting here

script.Parent.Touched:connect(function(hit)
    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
    if player then
        TeleportService:Teleport(Place, player)
    end
end)

If it doesnt work then try watching this: http://www.youtube.com/watch?v=MJOaWcSz5jk

0
Yeah, i used this script. this second place is public, and existing and, it dont works here's link of my place https://web.roblox.com/games/4247109038/DESERT-ISLAND-LOBBY rostikq2 0 — 4y
0
Yeah, i used this script. this second place is public, and existing and, it dont works here's link of my place https://web.roblox.com/games/4247109038/DESERT-ISLAND-LOBBY rostikq2 0 — 4y
0
Ad

Answer this question