How to make CFrame slower?

Idk how to explain it well but I was playing around with CFrame and was wondering how to make it slower in order to have it fling less when its targeting my mouse.

hmm, you could try tween service, so basically

local TS = game:GetService("TweenService")
TS:Create(Part,TweenInfo.new(0.5),{CFrame = A})

you gotta change the “Part” to your part and change A to the desired CFrame
not sure if its gonna work the way i think it will, but you should give it a try

1 Like

For a part with a constantly changing direction or a goal target I recommend lerping between the current parts CFrame with the goal target CFrame.

Part.CFrame = Part.CFrame:Lerp(CFrame.new(Part.CFrame.p, Mouse.Hit.p), 0.1)
1 Like