Trying to TweenPosition an image but it's not working

I’m trying to make it where my Slider goes up/down to the assigned letters when someone hovers their mouse on one of them. But it’s not working. I made sure to Scale my UI with the plugin so I don’t believe that’s the issue. But if you’re able to provide some ideas I could do or give me any websites in which can help me, then please.

https://gyazo.com/f7176c18b82a191dae76b8f073cac5bb

LocalScript:

local menu = script.Parent
local donateButton = menu.DonateButton
local playGameButton = menu.PlayGameBuutton
local gameModesButton = menu.GameModesButton
local creditsButton = menu.CreditsButton
local Slider = menu.Slider

donateButton.MouseEnter:Connect(function()
	Slider:TweenPosition(donateButton.Position)
		
end)

playGameButton.MouseEnter:Connect(function()
	Slider:TweenPosition(playGameButton.Position)
end)

gameModesButton.MouseEnter:Connect(function()
	Slider:TweenPosition(gameModesButton.Position)
end)

creditsButton.MouseEnter:Connect(function()
	Slider:TweenPosition(creditsButton.Position)
end)
1 Like

Try setting the AnchorPoint of the image you’re tweening to .5,.5

1 Like

It’s kind of working so I’mma keep messing around with it 'till it goes straight down/up. Thanks!