GUI tweening override is broken

The example at the bottom of http://wiki.roblox.com/index.php?title=API:Class/GuiObject/TweenPosition doesn’t work. Pretty sure I’ve used this before and has worked.

TweenOverrideRepro.rbxl (11.7 KB)

3 Likes

It looks like this could be an error in the documentation on the wiki, I will check if there have been any behavior changes with this though.

Looks like the override parameter controls if a tween will override previous tween calls, not if a tween can be overridden. The following code works:

GUI= script.Parent
wait(1)
GUI:TweenPosition(UDim2.new(0.8, 0, 0, 0), "Out", "Quad", 3, false)
wait(1.5)
GUI:TweenPosition(UDim2.new(0.5, 0, .5, 0), "Out", "Quad", 3, true)
2 Likes