Animation not playing?

I created a tween today using the tween sequencer plugin, and it will not play.

I have double-checked my scripts, but it still will not play

here is my script:

local Shop = game.StarterGui.ScreenGui.Shop
local animator = require(Shop.Animator)

Shop.MouseEnter:Connect(function()
	animator.NewTween:Play()
end)

Shop.MouseLeave:Connect(function()
	animator.Leave:Play()
end)

What is wrong? I think everything should work.

if you want to view the plugin, here is it’s tutorial: TweenSequence Editor

Can you send a rbxm file of game.StarterGui.ScreenGui.Shop?

It won’t play because you are referencing the ScreenGui in StarterGui, not the one in PlayerGui.
You should probably be using script.Parent, if the animation script is in ScreenGui.

That makes sense. Thanks so much!