Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make the name of the song that is playing on your game display on the screen?

Asked by 8 years ago
Edited 8 years ago

I've been trying to figure out how to make the song playing on your game display on the screen, but I had no luck just wondering if anyone can help me.

0
as in waveform? User#5423 17 — 8y
0
Just so you can see the name of the song at the top of the screen. TrueJackson123 0 — 8y

1 answer

Log in to vote
0
Answered by
cc567 50
8 years ago

Place this code inside each song file.

Music = script.Parent

Music:Play()  -- make sure this plays once
hint = Instance.new("hint",workspace)
hint.Text = Music.Name
wait(yournumberhere) -- Make this wait the length of the song.
Music:Stop()
hint:Destroy() -- This destroys the hint after the song is complete
Ad

Answer this question