Hello, i’ve been searching for tutorials about how to add sounds to cutscenes but i don’t find anything ! Pls help
1 Like
Can you be more specific? To make sounds play, just get a Sound Instance and call Play on it.
-- Example
local sound = Instance.new("Sound") -- create a sound instance (if you didn't premake one)
sound.SoundId = "rbxassetid://1843404009" -- example audio asset id
sound.Parent = game:GetService("SoundService")
sound:Play() -- play the sound
1 Like
Seeing how you have your cutscene code setup would help us know the best for you to implement it
1 Like