Advertisement
Guest User

antiTouch

a guest
Sep 16th, 2018
9,792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. --[[
  2.  
  3. Want an explanation of the script? ٩(。•́‿•̀。)۶
  4. https://youtu.be/LtQmj3YgLnE (Shirooo)
  5.    
  6. --]]
  7.  
  8. local ti = script.Parent:FindFirstChild("TouchInterest")
  9. if ti then
  10.     ti:Destroy()
  11. end
  12.  
  13. script.Parent.ChildAdded:Connect(function(child)
  14.     if child:IsA("TouchTransmitter") then
  15.         wait()
  16.         child:Destroy()
  17.     end
  18. end)
  19.  
  20. --[[ Shiro75 ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement