How to make text appear similar to scp unity

I’m working on an scp game currently with a friend, and I’m look to recreate the floor level ui animation seen in scp unity. Here is a video for reference, its in the intro, cant miss it: - YouTube

I’ve gotten the line spreading out part done (just tweened the size) but how would I make the text appear as if its coming out of the line like in the video? Is there a way to make an invisible gui element and simply have the text tween up or down? I hope I’m explaining this well

1 Like

I’m assuming you mean this part?:

image

Steps:

  • Create the line:

image

  • Create 2 frames on the top and on the bottom of the line. Set ClipsDescendants to true:

image

  • Add TextLabels to the frames:

image

  • Offset each TextLabel. Offset the bottom one to the top and the top one to the bottom:

image
image

  • Tween the text labels up and down to show and hide them
1 Like

I actually figured this out myself just before reading this, but thank you for trying to help!