Play Music while teleporting

robloxapp-20221207-2359275.wmv (388,3 KB)

Do you hear the Sound what is playing after the Text “The Match has begun” is showed there? How could i play the Sound while teleporting. Is there any way?

1 Like

Not while teleporting between games as far as I’m aware. You can start the sound when the player enters the new place.

SoundService:PlayLocalSound Is buggy, It still plays even when roblox is not even open, Maybe you can use it before the player teleports

local SoundService = game:GetService("SoundService")
local Sound = 

SoundService:PlayLocalSound(Sound)

Do i need to insert the Id to the Sound?

It’s actually intentional for this behavior to occur.

yes ofcourse

  • insert a sound
  • change the sound properties
  • change the sound variable to the inserted sound

local SoundService = game:GetService("SoundService")
local Sound = 

SoundService:PlayLocalSound(Sound)

Try putting a sound in the workspace, and enable playonremove.

Should i set the Sound Parent to the ReplicatedFirst/PlayerGui or under SoundService?

It wont work, it stops after the Player is removed from the Game.