Teleport (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Flurite
No edit summary
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
Tags: mobile web edit mobile edit
 
(14 intermediate revisions by 5 users not shown)
Line 3: Line 3:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name                = Teleport
|name                = Teleport
|arguments            = [[int]] PlaceId, [[String]] name of spawn location
|arguments            = [[int]] placeId
|returns              = [[nil]]
|description          = Used in a [[LocalScript]] to teleport a player to the place with ID <var>placeId</var>.
|description          = Used in a [[LocalScript]] to teleport a player to the place with ID PlaceId. If the second argument is provided, you will be teleported to a specific spawn location.
|object              = TeleportService
|object              = TeleportService
}}</onlyinclude>
}}</onlyinclude>
Line 11: Line 10:
{{clear floats}}
{{clear floats}}


{{Example|<pre>
{{Example|
game:GetService("TeleportService"):Teleport(1818) --> Will (supposedly) teleport a player to "Crossroads", a game by ROBLOX.
This code will teleport a player to Crossroads:
</pre>}}
<syntaxhighlight lang="lua">
game:GetService('TeleportService'):Teleport(1818)
</syntaxhighlight>}}


==See Also==
*[[TeleportService]]
*[[TeleportToSpawnByName_(Method)|TeleportToSpawnByName]]


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 05:00, 27 April 2023

Local: This item should be used with a LocalScript in order to work as expected in online mode.
Teleport( int placeId )
Returns nil
Description: Used in a LocalScript to teleport a player to the place with ID placeId.
Member of: TeleportService


Example

This code will teleport a player to Crossroads:

game:GetService('TeleportService'):Teleport(1818)


See Also