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