(Solved) Tween unable to start if user goes over buttons too fast

image
Mouse on the button but it won’t tween

image
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)

Charge is the white line
play Is the button

You should create two separate tweens to play/cancel accordingly instead of calling ‘TweenSize’ every mouse hover event.

local enterTween = TweenService:Create(...)
local exitTween = TweenService:Create(...)

button.MouseEnter:Connect(function()
    exitTween:Cancel()
    enterTween:Play()
end)
button.MouseLeave:Connect(function()
    enterTween:Cancel()
    exitTween:Play()
end)

I hope this helps!

Thanks but should i put my old

UDim2.new(0, 0,0.010, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Linear,0.05

In the dots?

local exitTween = TweenService:Create(...)

Yes, but make sure that it is placed according to the parameter.

TweenService:Create(charge,TweenInfo.new(0.05,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),{Size = UDim2.new(0, 0,0.010, 0)})
1 Like

Uhhh. It still seems to have the same bug?
If you flick your mouse too fast it bugs out and dosent tween.
Here is my code

local charge = script.Parent.Parent.ChargeLog
local play = script.Parent.Parent.UpdateLog
local TweenService = game:GetService("TweenService")
local enterTween = TweenService:Create(charge,TweenInfo.new(0.05,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),{Size = UDim2.new(0.060, 0,0.010, 0)})
local exitTween = TweenService:Create(charge,TweenInfo.new(0.05,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),{Size = UDim2.new(0, 0,0.010, 0)})

play.MouseEnter:Connect(function()
	charge.Visible = true
	exitTween:Cancel()
	enterTween:Play()
	play.UIStroke.Color = Color3.fromRGB(68, 68, 68)
	play.UIStroke.Thickness = 3
end)
play.MouseLeave:Connect(function()
	enterTween:Cancel()	
	exitTween:Play()
	play.UIStroke.Color = Color3.fromRGB(38, 38, 38)
	play.UIStroke.Thickness = 3
	wait(0.13)
	charge.Visible = false
end)

(it does now show the outline just the tween is still broken)

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.

1 Like

Got it. Thanks, i’ll test now.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.