Hi, I want to teleport 1 specific player when they join the game without having to touch a brick. I know how it would work, it would keep checking every time someone joined and if they had the correct name the would teleport to a part or location. It is just that I do not have much experience in scripting and would really love some help with this.
You could do this by using the PlayerAdded Function and the :MoveTo() Yield Function.
1 | local PlayersTriggered = { "tictac67" , "Player1" } --//Names of players that trigger when they join |
2 |
3 | game.Players.PlayerAdded:Connect( function (Player) --//Player = Player's Name that joined |
4 | Player.CharacterAdded:Connect( function (Character) |
5 | if PlayersTriggered [ Player.Name ] then |
6 | Character:MoveTo(workspace:FindFirstChild( "INSERT BRICK NAME HERE" ).Position) |
7 | end |
8 | end ) |
9 | end ) |