TeleportToSpawnByName (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
No edit summary
>Samacado
No edit summary
Line 10: Line 10:
{{clear floats}}
{{clear floats}}


{{Example|<pre>
{{Example|<code lua>
game:GetService("TeleportService"):TeleportToSpawnByName("1818", "SomeSpawnName") --> Will teleport a player to crossroads, and if there was a spawn named "SomeSpawnName" then you would spawn there.
game:GetService("TeleportService"):TeleportToSpawnByName("1818", "TeleportSpawn") -- Will teleport a player to "Crossroad" a game by ROBLOX, and if there is a spawn named "TeleportSpawn" then the player would spawn on it.
</pre>}}
</code>}}




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

Revision as of 02:21, 14 January 2012

Local: This item should be used with a LocalScript in order to work as expected in online mode.
TeleportToSpawnByName( int PlaceId, string SpawnName )
Returns nil
Description: Teleports someone like Teleport, but has a second argument allowing someone to teleport to a certain spawn. However, the spawn must have its Neutral property true.
Member of: TeleportService


Example

game:GetService("TeleportService"):TeleportToSpawnByName("1818", "TeleportSpawn") -- Will teleport a player to "Crossroad" a game by ROBLOX, and if there is a spawn named "TeleportSpawn" then the player would spawn on it.