So basically in roblox if u click and hover to a Ui element it keeps on registering as a click and makes it auto click. This has been a problem in roblox since around 2018 maybe even longer and it’s not been fixed. So how would i over come this i’ve seen some games not having this problem but most do.
2 Likes
A debounce can prevent a click from continuously registering.
local debounce = false
if not debounce then
debounce = true
end
1 Like
No, that’s not it at all. did u read what i wrote?
1 Like
Also, i wouldn’t use this basic debounce. Make a module for debounce so u can do stuff depending on other debounces just more of a quality thing tho
1 Like
I know a way around it but its more for newer people that don’t know how to fix it and would appreciate myself if roblox would fix it. Here’s where it happens i obv made smth against it for the main part but not for the ui so heres a clip
1 Like