Main public logs
From ROBLOX Wiki
Jump to navigationJump to search
Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:11, 10 December 2024 PRG talk contribs created page Debounce (Created page with "<!-- manually recreated, no source archive --> {{CatUp|Tutorials}} __TOC__ == Introduction == A debounce system is a system that keeps a function from running too many times. It usually is used in a listener because a listener can be called many times while it's still working. == The basic idea == <pre> enabled = true --default is true, so that the function works function dosomething() if not enabled then return end --if enabled is not true, then return withou...")