I am making a new speed run, and I need it to play this audio in PlayerGui. The audio is I it, and the only problem is something about the OnTouched part (Not shown in Output, just a guess). (This is a LocalScript)
script.Parent.OnTouched:connect(function(hit, player) local songs = game.Players.LocalPlayer.PlayerGui.Music songs.Level1:Stop() songs.Level1:Play() end)
Thanks in advance!
script.Parent.Touched:connect(function(hit, player) local songs = game.Players.LocalPlayer.PlayerGui.Music songs.Level1:Stop() songs.Level1:Play() end)
Fixed, for you. You put 'OnTouched', when the event is supposed to be 'Touched'.