hello so i’ve accidently encountered an issue with MouseLeave where if you hover over a GuiObject, MouseEnter fires correctly but if you press Windows Key + Shift + S aka the screenshot feature on Windows 10 while still hovering the object, if your mouse leaves the gui object while the screenshot window is active MouseLeave never fires soo wondering is this something wrong with my code or is it a bug, very much do not wanna false report a bug these days
code is basically this
hoverButton.MouseEnter:Connect(function()
infoFrame.Visible = true
end)
hoverButton.MouseLeave:Connect(function()
infoFrame.Visible = false
end)
and finally heres a video
[NOTE - the second time when MouseLeave did fire i clicked/moved my mouse too early, it happens when i waited a bit longer]