Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

When Moving Selector falls behind?

Asked by 7 years ago

When you hover your mouse over the menu it moves a bit to highlight it, But when you move it to quick it doesnt move to the one your on.

script.Parent.Load.MouseEnter:connect(function()
Move:TweenPosition(UDim2.new(0.08,0,.3,0),2)
end)

script.Parent.Resume.MouseEnter:connect(function()
Move:TweenPosition(UDim2.new(0.08,0,.2,0),2)
end)

script.Parent.New.MouseEnter:connect(function()
Move:TweenPosition(UDim2.new(0.08,0,.4,0),2)
end)

script.Parent.Exit.MouseEnter:connect(function()
Move:TweenPosition(UDim2.new(0.08,0,.7,0),2)
end)

Answer this question