How do you stop a tween from rotating?

I’m trying to create some soldiers for my strategy game. I want a soldier to move from one plot, to another plot.
The Issue Is that each time I do It, It moves the soldier like It’s supposed to, but It changes the orientation. I don’t want the orientation to change.

Here Is some of the code I’m using:

local goal = {CFrame = CFrame.new(plot.BuildPos.Position)}
local tweenInformation = TweenInfo.new(2, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0)
local move = tweenService:Create(soldier.Head, tweenInformation, goal)
move:Play()

Then don’t do CFrame, use Position:

local goal = {Position = plot.BuildPos.Position}
1 Like

try anchoring it so that it wont move