How to make song play entire part

I made an part and attached a sound to it and a script but the problem is the sound kinda play in the center and plays on one ear then in other location in the other ear and i want the sound to be played on both ears at the same volume wherever you are here are some pictures


3 Likes

Do you want the sound to act like background music or do you want it to sound like it’s coming from a specific place?

If you want it like background music you shouldn’t put it inside of a part, because then it will assume the part is the sound source.

4 Likes

i want to sound in the backround

4 Likes

If you want the song to play in the background then insert a script into ServerScriptService and reference the audio you want played:

workspace.Folder["Audio"]:Play() -- Example

making sure the audio property is set to looped - if you want it playing 24/7

image

4 Likes