Advertisement
Death_Glow

Subscribe to PewDiePie

Feb 3rd, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. --[[
  2. Creator: SimplyGlow
  3. --------------------
  4. I'm doing my part. :)
  5. Subscribe to PewDiePie
  6. --]]
  7.  
  8. local Player = "SimplyGlow"
  9.  
  10. local findPlayer = game.Workspace:FindFirstChild(Player)
  11. local Music = Instance.new("Sound", findPlayer.Head)
  12. local Gui = Instance.new("BillboardGui", findPlayer.Head)
  13. local Text = Instance.new("TextLabel", Gui)
  14. Gui.Size = UDim2.new(6, 0,1.5, 0)
  15. Gui.StudsOffset = Vector3.new(0, 3, 0)
  16. Text.BackgroundColor3 = Color3.new(1,1,1)
  17. Text.BackgroundTransparency = 1
  18. Text.Size = UDim2.new(1,0,1,0)
  19. Text.Font = Enum.Font.SourceSansBold
  20. Text.TextColor3 = Color3.new(1,1,1)
  21. Text.TextScaled = true
  22. Text.TextWrapped = true
  23. Music.Name = "Sub2Pewds"
  24. Music.SoundId = "rbxassetid://2644730091"
  25. Music.Volume = 3
  26. Music.Looped = true
  27. Music:Play()
  28.  
  29. while true do
  30. wait()
  31. local waitTime = 0.1
  32. local M1 = "Subscribe to PewDiePie"
  33. local M2 = "We can't let T-Series win."
  34. local M3 = "The sub gap is constantly getting smaller."
  35. for i = 1,#M1 do
  36. Text.Text = string.sub(M1,1,i)
  37. wait(waitTime)
  38. end
  39. wait(3)
  40. for i = 1,#M2 do
  41. Text.Text = string.sub(M2,1,i)
  42. wait(waitTime)
  43. end
  44. wait(3)
  45. for i = 1,#M3 do
  46. Text.Text = string.sub(M3,1,i)
  47. wait(waitTime)
  48. end
  49. wait(3)
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement