Teleport (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Emess
the argument is an integer, not a string.
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
Tags: mobile web edit mobile edit
 
(20 intermediate revisions by 7 users not shown)
Line 3: Line 3:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name                = Teleport
|name                = Teleport
|arguments            = [[int]] PlaceId
|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.
|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.
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