I have this current code
1 | function ClickedCourse 1 () |
2 | Course 1. Visible = false |
3 | Course 2. Visible = false |
4 | Course 3. Visible = false |
5 | CourseSelect.Visible = false |
6 |
7 | end |
Basically when I click a button it disables all the GUI's but I always want it to teleport the player to a block named Course1Tele I just want to know the simple command on how to do this, thanks!
You can either change the CFrame of a character's torso, or use the MoveTo() method on the character model itself. Of course, you have to have a way to get the character.
1 | character:MoveTo(workspace.Course 1 Tele.Position) |
1 | character.Torso.CFrame = CFrame.new(workspace.Course 1 Tele.Position) |
With .MouseButton1Down Event or A LocalPlayer (if your script is a LocalScript) all you gotta do is locate the Character's Torso from the player and change its CFrame equalized to the block's CFrame.
01 | local Brick = Workspace.Part |
02 |
03 | function Teleport(player) |
04 | if player.Character:FindFirstChild( "Torso" ) then |
05 | player.Character.Torso.CFrame = Brick.CFrame |
06 | --Model:MoveTo(x,y,z) can do this too, but I prefer it this way. |
07 | --If you want the player to stand on the brick this is how you'd do it (I think.): |
08 | player.Character.Torso.CFrame = Brick.CFrame*CFrame.new( 0 ,Brick.Size.Y, 0 ) |
09 | end |
10 |
11 | script.Parent.MouseButton 1 Down:connect(Teleport(player)) |