I am making a music admin script, I want to create a hint after the song ended, ex What's the event that fires after a song has ended.
Song ended code here local hi = Instance.new("Hint", workspace)
You could use the .Ended event of the Sound object, like so:
SongAudio.Ended:wait() local hi = Instance.new("Hint", workspace)
More reference here: http://wiki.roblox.com/index.php?title=API:Class/Sound/Ended