I have a game where you can click different checkpoints in a GUI to teleport throughout the map, However; it keeps teleporting players on top of roofs, etc.
I have read about CFRAME's but cannot get it to work properly.
Please help!
1 | local self = script.Parent; |
2 | local Player = game.Players.LocalPlayer; |
3 | local Character = Player.Character or Player.CharacterAdded:wait(); |
4 |
5 | self.MouseButton 1 Down:connect( function () |
6 | Character:MoveTo(Vector 3. new( 42.913 , 37.644 , - 119.341 )); |
7 | end ) |
Thank You.
You must use a local script. Not sure why but the first answer make me feel like your using a serverscript. Also the local script must be inside the textbutton GUI.
1 | script.Parent.MouseButton 1 Click:Connect( function () -- When MouseButton1 (L Mouse) clicked then function below code |
2 | local plr = game.Players.LocalPlayer -- Getting LocalPlayer (The client which is the player probably you when testing) |
3 | local char = plr.Character -- Getting plr Character |
4 | char:FindFirstChild( "HumanoidRootPart" ).CFrame = CFrame.new( 0 , 0 , 0 ) -- Set your CFrame position |
5 | end ) -- Nihao I am chinese |
Comment if you dont understand.
Make sure its a script, also you don't have any touch intrest in your script.
Put this at the very top of the script, and the second line at the very bottom
1 | function onTouched(hit) |
2 | script.Parent.Touched:Connect(onTouched) |