I really wanted to make this game called "Christmas Missions" on roblox, but I tried free models for teleporters and even teleporters I tried on my old account but it wont work! could you give me a code that will work please and what do I add to function it! Please help!
In order to teleport to another game, you need to take advantage of TeleportService. TeleportService has a function called Teleport, which can send you to a specific game of your choice.
The Teleport function takes in 2 arguments..
The place ID to teleport to
The Player you wish to teleport
Note: The second argument may be nil if you are using this from a LocalScript.
local service = game:GetService("TeleportService"); local place = 20279777; --Voidacity's Script Builder local plr = game.Players.Goulstem; service:Teleport(place,plr);
Locked by Goulstem
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?