123iamstupid123

Untitled

Aug 24th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. wait()
  2. starttext=" FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER"
  3.  
  4. function c(p)
  5. spawn(function()
  6. local ke=0
  7. local screengui = Instance.new("ScreenGui", p.PlayerGui)
  8. local textlabel = Instance.new("TextLabel", screengui)
  9.  
  10.  
  11. textlabel.TextWrapped = true
  12. textlabel.TextStrokeTransparency = 0
  13. textlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  14. textlabel.BackgroundTransparency = 1
  15. textlabel.Size = UDim2.new(0.3, 0, 0.2, 0)
  16. textlabel.TextColor3 = Color3.new(1, 1, 1)
  17. textlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  18. textlabel.Text = "YOU'RE AN FMER"
  19. textlabel.Position = UDim2.new(0.35, 0, 0.4, 0)
  20. textlabel.Font = Enum.Font.SourceSans
  21. textlabel.FontSize = Enum.FontSize.Size24
  22.  
  23. wait(.5)
  24. textlabel.Text = "FMER"
  25. textlabel.FontSize = Enum.FontSize.Size36
  26. wait(.5)
  27. textlabel.FontSize = Enum.FontSize.Size42
  28. textlabel.Text = "FMER!!!!!!!!!!!!"
  29. game.Debris:AddItem(screengui,.4)
  30. wait(.5)
  31. for i=1,50 do wait()
  32. local screengui = Instance.new("ScreenGui", p.PlayerGui)
  33. local textlabel = Instance.new("TextLabel", screengui)
  34.  
  35.  
  36. textlabel.TextStrokeTransparency = 0
  37. textlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  38. textlabel.BackgroundTransparency = 1
  39. textlabel.Size = UDim2.new(1, 0, 0, 70)
  40. textlabel.Position = UDim2.new(0,0,0,ke)
  41. textlabel.TextColor3 = Color3.new(1, 1, 1)
  42. textlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  43. textlabel.Text = "FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER FMER"
  44. textlabel.Font = Enum.Font.SourceSans
  45. textlabel.FontSize = Enum.FontSize.Size60
  46. game.Debris:AddItem(screengui,1)
  47. ke=ke+50
  48. end
  49.  
  50.  
  51. local screengui = Instance.new("ScreenGui", p.PlayerGui)
  52. local textlabel = Instance.new("TextLabel", screengui)
  53.  
  54. textlabel.TextStrokeTransparency = 0
  55. textlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  56. textlabel.BackgroundTransparency = 1
  57. textlabel.Size = UDim2.new(2, 0, 0.15, 0)
  58. textlabel.TextColor3 = Color3.new(1, 1, 1)
  59. textlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  60. textlabel.Text = starttext
  61. textlabel.Position = UDim2.new(-0.5, 0, 0.425, 0)
  62. textlabel.Rotation = -30
  63. textlabel.Font = Enum.Font.SourceSansBold
  64. textlabel.FontSize = Enum.FontSize.Size96
  65. a = game:service("RunService").Stepped:connect(function()
  66. local ctext=textlabel.Text
  67. local removalc = ctext:sub(0,1)
  68. local ctext = ctext:sub(2)..removalc
  69. textlabel.Text=ctext
  70. if textlabel.Text == starttext then
  71. screengui:Destroy()
  72. a:disconnect()
  73. end
  74. end)
  75. end)
  76. end
  77.  
  78. for i,v in pairs(game.Players:GetPlayers())do
  79. c(v)
  80. end
Add Comment
Please, Sign In to add comment