Hello my Question is How i can teleport a Player in a Local Script?
Thats my current Script:
01 | local player = game.Players.LocalPlayer |
02 | |
03 | local owner = player.Name |
04 |
05 | local frame = script.Parent:WaitForChild( "Frame" ) |
06 |
07 | frame.Button 1. MouseButton 1 Click:Connect( function () |
08 | *Teleport Player to a specific Positon* |
09 | print (owner.. " has clicked Button 1" ) |
10 |
11 | end ) |
12 |
13 | frame.Button 2. MouseButton 1 Click:Connect( function () |
14 | *Teleport Player to a specific Positon* |
15 | print (owner.. " has clicked Button 2" ) |
16 |
17 | end ) |