Advertisement
kippo77

ANTI ABUSE (fixed)

Jun 8th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. local chara = game:GetService("Players").LocalPlayer.Character
  2.  
  3. function swait()
  4. wait()
  5. end
  6.  
  7.  
  8. function chatfunc(text)
  9. coroutine.wrap(function()
  10. if chara:FindFirstChild("TalkingBillBoard")~= nil then
  11. chara:FindFirstChild("TalkingBillBoard"):destroy()
  12. end
  13. local naeeym2 = Instance.new("BillboardGui",chara)
  14. naeeym2.Size = UDim2.new(0,100,0,40)
  15. naeeym2.StudsOffset = Vector3.new(0,3,0)
  16. naeeym2.Adornee = chara.Head
  17. naeeym2.Name = "TalkingBillBoard"
  18. local tecks2 = Instance.new("TextLabel",naeeym2)
  19. tecks2.BackgroundTransparency = 1
  20. tecks2.BorderSizePixel = 0
  21. tecks2.Text = ""
  22. tecks2.Font = "Fantasy"
  23. tecks2.FontSize = "Size24"
  24. tecks2.TextStrokeTransparency = 0
  25. tecks2.TextColor3 = Color3.new(1,1,1)
  26. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  27. tecks2.Size = UDim2.new(1,0,0.5,0)
  28. for i = 1,string.len(text),1 do
  29. tecks2.Text = string.sub(text,1,i)
  30. wait()
  31. end
  32. wait(30)
  33. for i = 1, 5 do
  34. swait()
  35. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  36. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  37. tecks2.TextTransparency = tecks2.TextTransparency + .2
  38. end
  39. naeeym2:Destroy()
  40. end)()
  41. end
  42.  
  43. chatfunc("Sup, dirty noob.")
  44. wait(2)
  45. chatfunc("Y u even here when u keep abusing..?")
  46. wait(2)
  47. chatfunc("YOU'RE JUST A DIRTY ABUSER..!")
  48. wait(2)
  49. chatfunc("heh, u know wat?")
  50. wait(3)
  51. chatfunc("LET THIS BE AN END...!!!!")
  52. wait(3)
  53. local BOOM = Instance.new("Sound", workspace)
  54. BOOM.SoundId = "rbxassetid://573314737"
  55. BOOM.Playing = true
  56. BOOM.Volume = 10
  57. for i, v in pairs(game.Players:GetChildren()) do
  58. local char = v.Character
  59. char:Destroy()
  60. end
  61. wait(2)
  62. local mail = Instance.new("Sound", workspace)
  63. mail.SoundId = "rbxassetid://133120210"
  64. mail.Volume = 10
  65. mail.Playing = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement