Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Music Player Tutorial ---
- --Lazy--
- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
- -- Variables --
- local soundservice = game:GetService("SoundService")
- local controller = script.Parent.Playing
- local Music = soundservice.Audio
- local player = game.Players
- -- Repeats --
- repeat
- wait(2)
- -- Text Visible --
- controller.Visible = true
- controller.Text = "Now Playing; Plastik"
- -- Giving Time To Read --
- wait(3)
- controller.Visible = false
- -- Playing Song --
- wait(2)
- Music["Plastik (a 60)"]:Play()
- -- Time Until Finished Then Next Song Plays --
- wait(59.611)
- controller.Visible = true
- controller.Text = "Now Playing; Monna Lisa Not Smile"
- -- Giving Time To Read --
- wait(3)
- controller.Visible = false
- -- Playing Song --
- wait(2)
- Music["Monna Lisa Not Smile"]:Play()
- -- If Player Hasn't Left By Then It Will Restart --
- wait(192.052)
- until player.PlayerRemoving
- --Link In Description (Pastbin) --
- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement