so, I have this script and for some reason, when I execute it. it only brings the humanoid root part. should I put it in a server script with a remote event??
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | local player = game.Players.LocalPlayer |
3 | player.Character.Position = Vector 3. new( 3043.361 , 2699.429 , - 3100.891 ) |
4 | end ) |
First thing, don't teleport players locally, as it won't be registered in server. Try adding remote Event and teleport the player in server side.
Second, In line 3, you should not use :
1 | player.Character.Position |
Instead, use:
1 | player.Character.PrimaryPart.Position |
And if will be using Remote Event, then put it in server side.
Lemme know if it helps!
I solved it in the question, put it in a RemoteEvent and made it server sided and it worked