hello, im doing a gui thing where if you hover it it will enlarge then when the mouse is no longer in the gui its going to go back to its original size but there is a bug for some reason
as you can see if i just moved my mouse quikly it kind off get confused
local play = script.Parent.play
local sett = script.Parent.Settings
local twn = game:GetService("TweenService")
play.MouseEnter:Connect(function()
play:TweenSize(UDim2.new(0.242, 0, 0.139, 0))
end)
play.MouseLeave:Connect(function()
play:TweenSize(UDim2.new(0.167, 0, 0.072, 0))
end)
here is the code now so yeah its pretty basic but why is it doing that??? is there anyone that knows what is happening?!