CLOSED:
1 | local player = game.Players.LocalPlayer |
2 | local TweenService = game:GetService( "TweenService" ) |
3 |
4 | local info = TweenInfo.new( 5 , Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0 , false , 0 ) |
5 |
6 | TweenService:Create(game.Workspace.TestPart, info, { CFrame = CFrame.new( 9.25 , 5 , 75.85 ) } ):Play() |
If I set the goal to a CFrame then it will work. I've also learned a lot about CFrames in this time.
CLOSED:
1 | local player = game.Players.LocalPlayer |
2 | local TweenService = game:GetService( "TweenService" ) |
3 |
4 | local info = TweenInfo.new( 5 , Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0 , false , 0 ) |
5 |
6 | TweenService:Create(game.Workspace.TestPart, info, { CFrame = CFrame.new( 9.25 , 5 , 75.85 ) } ):Play() |
If I set the goal to a CFrame then it will work. And I've learned a lot about CFrames in this time.