|
| 15 Aug 2014 11:29 AM |
i was thinking that debounce might help ill give you an example
if hit.Parent:findFirstChild("Humanoid") and script.Parent.HasBeenTouchedFor1st.Value == false then a = hit.Parent.Name game.Players[a]:findFirstChild("place").Value = 1 script.Parent.HasBeenTouchedFor1st.Value = true end end) how would you disable this?
|
|
|
| Report Abuse |
|
|
| 15 Aug 2014 11:32 AM |
You really wouldn't disable it, but you could avoid it by setting a condition and placing that in the script.
if condition = false then return end if condition = true then --place this here |
|
|
| Report Abuse |
|