Mouse on the button but it WILL tween
If you flick the mouse, it won’t play the tween nor outline.
It’s really annoying and happens inbetween hovering over different buttons
Please help! I tried fixing it myself but I am too inexperienced.
local charge = script.Parent.Parent.ChargeLog
local play = script.Parent.Parent.UpdateLog
charge.Size = UDim2.new(0, 0,0.010, 0)
charge.Visible = false
play.MouseEnter:Connect(function()
if charge.Size == UDim2.new(0, 0,0.010, 0) then
charge.Visible = true
charge:TweenSize(UDim2.new(0.060, 0,0.010, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Linear,0.05)
play.UIStroke.Color = Color3.fromRGB(68, 68, 68)
play.UIStroke.Thickness = 3
end
end)
play.MouseLeave:Connect(function()
charge:TweenSize(UDim2.new(0, 0,0.010, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Linear,0.05)
play.UIStroke.Color = Color3.fromRGB(38, 38, 38)
play.UIStroke.Thickness = 3
wait(0.13)
charge.Visible = false
end)
I think it is because you are setting the visibility of the charge object. Instead of making it invisible, just make the exit tween’s size goal very small to the point of it looking invisible.