Teleport (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26 -.- |
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>" Tags: mobile web edit mobile edit |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
<onlyinclude>{{Method | <onlyinclude>{{Method | ||
|name = Teleport | |name = Teleport | ||
|arguments = [[int]] | |arguments = [[int]] placeId | ||
|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 | |||
|object = TeleportService | |object = TeleportService | ||
}}</onlyinclude> | }}</onlyinclude> | ||
Line 11: | Line 10: | ||
{{clear floats}} | {{clear floats}} | ||
{{Example|< | {{Example| | ||
game:GetService( | This code will teleport a player to Crossroads: | ||
</ | <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.
![]() | |
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)