Advertisement
Blueisim

Hueuehueheuheueheuhe

Sep 4th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. local targ
  2. script.Parent=game
  3. math.randomseed(os.time())
  4. local t
  5. local c
  6. local bn=0
  7. local own=game.Players.LocalPlayer
  8. local h=Instance.new("Hint",own.PlayerGui)
  9. local m2=math.random(25,math.huge)
  10. print(m2)
  11. m2=m2*100
  12. h.Text="Name your victim."
  13. function ffbomb(b,num)
  14. while true do
  15. wait()
  16. local ff=Instance.new("Message",workspace)
  17. ff.Text=b.Name..", just stop"
  18. bn=bn+1
  19. if bn >= num then
  20. break
  21. end
  22. wait()
  23. end
  24. end
  25. cn=own.Chatted:connect(function(m)
  26. if game.Players:FindFirstChild(m) then
  27. t=game.Players:FindFirstChild(m)
  28. c=t.Character
  29. h:Destroy()
  30. cn:disconnect()
  31. ffbomb(c,m2)
  32. else
  33. h.Text="ERROR: Not a valid target."
  34. wait(2)
  35. h.Text="Name your victim"
  36. end
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement