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.
1 | Song ended code here |
2 | local hi = Instance.new( "Hint" , workspace) |
You could use the .Ended event of the Sound object, like so:
1 | SongAudio.Ended:wait() |
2 | local hi = Instance.new( "Hint" , workspace) |
More reference here: http://wiki.roblox.com/index.php?title=API:Class/Sound/Ended