|
| 23 Jul 2015 02:59 AM |
| kinda repost but this is easier to anwser, so if I have a ontouched function how do I stop it? |
|
|
| Report Abuse |
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 23 Jul 2015 03:00 AM |
USE A DEBOUNCE.
local debounce = false
script.Parent.Touched:connect(function() if not debounce then debounce = true --code wait() debounce = false end end)
"Talk is cheap. Show me the code." - Linus Torvalds |
|
|
| Report Abuse |
|