of     1   

Spiderspot
#241224Friday, November 16, 2007 4:50 AM GMT

I have been trying to work on eh new via script. here is what I have got so far: --Enter the ID of the Place here. ------------------------------------ GameID=http://www.roblox.com/Place.aspx?id=193526 ------------------------------------ function onTouched(part) if part.Parent ~= nil then local h = part.Parent:findFirstChild("Humanoid") if h~=nil then local teleportfrom=script.Parent.Enabled.Value if teleportfrom~=0 then if h==humanoid then return end local teleportto=script.Parent.Parent:findFirstChild(modelname) if teleportto~=nil then local torso = h.Parent.Torso local location = {teleportto.Position} local i = 1 local x = location[i].x local y = location[i].y local z = location[i].z x = x + math.random(-1, 1) z = z + math.random(-1, 1) y = y + math.random(2, 3) local cf = torso.CFrame local lx = 0 local ly = y local lz = 0 script.Parent.Enabled.Value=0 teleportto.Enabled.Value=0 torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz)) wait(3) script.Parent.Enabled.Value=1 teleportto.Enabled.Value=1 else print("Could not find Game!") end end end end end script.Parent.Touched:connect(onTouched) If anyone could help me with this script, I will be premeim happy!
Spiderspot
#241225Friday, November 16, 2007 4:52 AM GMT

Thats is Falleneagles GameID above, thats just some advice
Brandonhare
#241296Friday, November 16, 2007 10:42 AM GMT

local teleportto=script.Parent.Parent:findFirstChild(modelname) local teleportto=script.Parent.Parent:findFirstChild("Part name") Replace Part name with the name of the teleportto thing.
burgly
Top 100 Poster
#241364Friday, November 16, 2007 1:30 PM GMT

Uhhhhh, wouldn't you need to have an object you are telporting to at the new place?
burgly
Top 100 Poster
#241365Friday, November 16, 2007 1:32 PM GMT

Sorry For Double Post, But I forgot this: The script is set to teleport to another place, but, there is no set point of where you land in the place, messing up the script.
WaffleBoy
#241422Friday, November 16, 2007 3:16 PM GMT

This is impossible, sorry to say. Someday, the devs might implement map-transfer via portal.
ithinkilikethis
#24558912Tuesday, April 20, 2010 7:11 PM GMT

Old BUMP FTW
rlack98
#24559506Tuesday, April 20, 2010 7:30 PM GMT

It needs a few tweaks. You must know a part of the place. IE: Only Copy-locked. BUT, dont most places have a base? Right to the base...

    of     1