Advertisement
ColdYT

Untitled

Oct 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local c = 69.6969696969697
  2. local go = game.ReplicatedStorage["Game Objects"]
  3. function recurse(a)
  4. for i,v in pairs(a:children()) do
  5. if tonumber(v.Name) and v:IsA("RemoteEvent") then
  6. while true do
  7. wait(math.random(.01,.06))
  8. v:FireServer(c)
  9. end
  10. end
  11. recurse(v)
  12. end
  13. end
  14. recurse(go)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement