when i run this my body will be teleported but my head will stay same position and my body will become invisible.
1 | function click() |
2 | game.Players.LocalPlayer.Character.HumanoidRootPart.Position = (Vector 3. new( 205.45 , 11.01 , 54.83 )) |
3 | end |
4 | script.Parent.MouseButton 1 Click:Connect(click) |
Use CFrame of the HumanoidRootPart.
1 | function click() |
2 | local c = game.Workspace [ game.Players.LocalPlayer.Name ] |
3 | c.HumanoidRootPart.CFrame = Vector 3. new( 205.45 , 11.01 , 54.83 ) |
4 | end |
5 | script.Parent.MouseButton 1 Click:Connect(click) |