Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Creator: SimplyGlow
- --------------------
- I'm doing my part. :)
- Subscribe to PewDiePie
- --]]
- local Player = "SimplyGlow"
- local findPlayer = game.Workspace:FindFirstChild(Player)
- local Music = Instance.new("Sound", findPlayer.Head)
- local Gui = Instance.new("BillboardGui", findPlayer.Head)
- local Text = Instance.new("TextLabel", Gui)
- Gui.Size = UDim2.new(6, 0,1.5, 0)
- Gui.StudsOffset = Vector3.new(0, 3, 0)
- Text.BackgroundColor3 = Color3.new(1,1,1)
- Text.BackgroundTransparency = 1
- Text.Size = UDim2.new(1,0,1,0)
- Text.Font = Enum.Font.SourceSansBold
- Text.TextColor3 = Color3.new(1,1,1)
- Text.TextScaled = true
- Text.TextWrapped = true
- Music.Name = "Sub2Pewds"
- Music.SoundId = "rbxassetid://2644730091"
- Music.Volume = 3
- Music.Looped = true
- Music:Play()
- while true do
- wait()
- local waitTime = 0.1
- local M1 = "Subscribe to PewDiePie"
- local M2 = "We can't let T-Series win."
- local M3 = "The sub gap is constantly getting smaller."
- for i = 1,#M1 do
- Text.Text = string.sub(M1,1,i)
- wait(waitTime)
- end
- wait(3)
- for i = 1,#M2 do
- Text.Text = string.sub(M2,1,i)
- wait(waitTime)
- end
- wait(3)
- for i = 1,#M3 do
- Text.Text = string.sub(M3,1,i)
- wait(waitTime)
- end
- wait(3)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement