Advertisement
Guest User

Synapse X Site 17 button spammer

a guest
Apr 20th, 2019
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. --Haunted Foundation
  2. --strobe light
  3. local del
  4.  
  5. function btn(d,m)
  6.     wait(d)
  7.     fireclickdetector(game.workspace[m].stop.ClickDetector)
  8.     wait(d)
  9.     fireclickdetector(game.workspace[m].play.ClickDetector)
  10. end
  11.  
  12. function light()
  13.     while true do
  14.         del = math.random(0.1,1)
  15.         btns = {"SiteBlackoutButtons","HCZLockdownButtons"}
  16.         for index, c in pairs(btns) do
  17.             btn(del,c)
  18.         end
  19.     end
  20. end
  21.  
  22. function REEEE()
  23.     while true do
  24.         del = math.random(0.1,0.3)
  25.         btns = {"MCZBreachAlarmButtons","ChaosInsurgencyBreachAlarmButtons"}
  26.         for index, c in pairs(btns) do
  27.             btn(del,c)
  28.         end
  29.     end
  30. end
  31.  
  32. function voice()
  33.     while true do
  34.         del = math.random(0.1,0.3)
  35.         btns = {"ContainmentBreachAnnouncementButtons1","ContainmentBreachAnnouncementButtons2","ClassDRiotAnnouncementButtons","ChaosInsurgencyBreachAnnouncementButtons","NineTailedFoxAnnouncementButtons"}
  36.         for index, c in pairs(btns) do
  37.             btn(del,c)
  38.         end
  39.     end
  40. end
  41.  
  42. spawn(REEEE)
  43. spawn(light)
  44. spawn(voice)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement