I am making a place where people can teleport to different place and i have noticed that you cant teleport to a place unless it is apart of a game, please can some one help me with the code i should use.
You can just use a generic teleport script. The place that your sending the player just has to make the destination place a part of the Main Games Universe.
In the Teleport Brick as a Server-Side Script
button = script.Parent function onTouch(other) local human = other.Parent:FindFirstChild("Humanoid") if not human then return end b=script.Parent.Tele1:Clone() b.Parent=human local player = game.Players:GetPlayerFromCharacter(other.Parent) if not player then return end end button.Touched:connect(onTouch)
In the Teleport Brick as a Local Script
game:GetService('TeleportService'):Teleport(158361348) --Insert Place ID here!
P.S. More Information of Universes here!
http://roblox.wikia.com/wiki/Game_Universe http://blog.roblox.com/2012/01/the-big-bang-at-roblox-universe-creation/ http://wiki.roblox.com/index.php?title=Games