function floatingtitle() local float = true while float == true do gui.back.title:TweenPosition(UDim2.new(0.114, 0,-0.151, 0)) wait(1.1) gui.back.title:TweenPosition(UDim2.new(0.114, 0,-0.101, 0)) end end wait(0.1) floatingtitle()
It looks like it's running fine. Print something inside the loop to see for yourself. I think what's happening is that your tween isn't stopping for the other tween. I had this issue a while ago and I think you need to change the override property of the tween position function.