Help Creating Tween Transition

I’m trying to create a tween transition effect like the video below, however I have no idea where to start. I have basic tween knowledge but I’m quite stuck on this.

What I’m trying to re-create:

Again any help or pointers on where I would start would be appreciated. Thanks alot.

I believe it is just a texture with a hole in the middle that just gets resized. Here is the documentation for tweening UI.

2 Likes

Thanks alot, will try it out when I’m home and let you know

Samuel has the right idea, to expand upon this it would be an image in the centre with four very large frames on all sides to cover the rest of the screen. I’d group it under one parent frame and use UIScale to animate it growing, like so:

  • TransitionEffect (Frame)
    • UIScale (use tweenservice on this to grow the effect)
    • Hole (ImageLabel)
    • TopEdge (Frame)
    • BottomEdge (Frame)
    • LeftEdge (Frame)
    • RightEdge (Frame)

3 Likes

Worked well, thanks alot!


1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.