Script doesn't play audio

fixed it


local Player = game:GetService("Players").LocalPlayer
local SoundService = game:GetService("SoundService")
local Subtitle = Player:WaitForChild("PlayerGui"):WaitForChild("Subtitles"):WaitForChild("Subtitle")
local SoundFolder = game.Workspace.Narration
local Remotes = game.ReplicatedStorage.Remotes

--//Intro Narration
Remotes.Intro.VoiceIntro1.OnClientEvent:Connect(function(plr)
	local VoiceIntro1 = SoundFolder.Intro.SecondAudio
	VoiceIntro1:Play()

	--subtitle.Text = "Text"
end)

Alright, though I fixed it, thanks for the help also.

you are welcome have a nice day

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.