I asked a question about CFrame movement and was kindly provided with this script:
01 | local TweenService = game:GetService( "TweenService" ) --gets tween service |
02 |
03 | local part = workspace.Part --gets the part (change it to your own part's address) |
04 |
05 | local tweenInfo = TweenInfo.new( --how we want our tween to play |
06 | 1 , --how fast the tween is (in seconds) |
07 | Enum.EasingStyle.Linear, --easing style |
08 | Enum.EasingDirection.Out, --easing direction |
09 | 0 , --no. of times the tween will repeat |
10 | false , --will the tween reverse upon finishing? |
11 | 0 --how long the delay is (in seconds) |
12 | ) |
13 |
14 | local goal = { --goal for our part's property, in this case, the position |
15 | Position = Vector 3. new( 69 , 42 , 0 ) --our goal position for our part |
16 | } |
17 |
18 | local tween = TweenService:Create(part, tweenInfo, goal) --now creates the tween |
19 |
20 | tween:Play() --finally, plays it |
However, me not being very strong with Lua, I can't figure out how to add orientation to this. Does anyone know if it's possible and/or provide a script?
Under the goal property put the orientation there.
It reads.
1 | local goal = { --goal for our part's property, in this case, the position. |
2 |
3 | Position = Vector 3. new( 69 , 42 , 0 ) --our goal position for our part |
4 | Orientation = Vector 3. new( 1 ,- 1 , 0 ) -- our goal orientation for our part |
5 |
6 | } |
Hope this helps.