How to place a sound in the player's head?

Hi, i’m, trying to put a sound in a player’s head.
I have tried putting the sound in the rig’s head and putting that in starterplayer. The issue is that all the players are just rigs.

BTW if you don’t know what I mean about rig its the rig builder plugin that comes when studio downloaded.

Can anyone help??
I hope I’m putting this in the right category let me know if it’s in the wrong category.
Hope I explained this right.

Try adding a Script in StarterCharacterScripts and add this code into it:

local sound = Instance.new("Sound")
sound.SoundId = "rbxassetid://0" -- Replace the 0 with your preferred sound's asset ID.
sound.Parent = script.Parent:WaitForChild("Head")
--Sound.Looped = true -- Remove the two dashes at the start of this line for the sound to loop.
sound:Play()

This should add a new sound to the character’s Head.

3 Likes

Thank you this really helped me a lot!!