Basically, what I’d want is the set pivot function to be tweenable for a door.
Previous doors that I’ve made were done using a for loop to set the pivot from angles 0 to 85, but I got told one day that I could Tween it, despite previous attempts having failed.
So how can I use Tweens and SetPivot() together?
1 Like
You could lerp each frame, and use the lerped CFrame as the pivot.
Otherwise, if you reaallyy want to use tweens, a way may be to start the tween, and until the tween is completed, connect to the stepped/render stepped events and set pivot each frame. Make sure to disconnect after the tween is finished.
2 Likes