Textlabel wont reset position after frame is no longer visible

I’m currently using tweenservice to animate some textlabels, I want the textlabel to slide across the screen and reset itself when the frame is hidden. All the other objects in the script reset themselves but the textlabel does not.
I sued the proper script format as it worked in another frame, but it seems to not in this case.

1 Like

Do you mean when the frame is out of the screen by that?

Also why do you use the ShowTween value for that?

Showtween is a true/false value that i use so i can make the animations reset when the frame is not visible

Tweens will forcefully override basic property changes (for an example try tweening the position of an unanchored part)

Try to stop the tween before setting properties

1 Like

Like @TheSai_ki said you have a tween with 10 seconds, which is longer than the next task.wait()s, that tween might be overriding the “reset” thread if it executes before the tween finishes.

1 Like