Hi i made a speaker that plays music but im the only one who can hear it how do i fix that
local workspaces = game:GetService(“Workspace”)
workspaces.RadioMesh.ClickDetector.MouseClick:Connect(function(player)
if player.Name == “Tunnells” then
player.PlayerGui.Music.Enabled = true
wait(5)
player.PlayerGui.Music.Enabled = false
else
print("Your are not a admin")
end
end)
local sound = workspaces.RadioMesh.Sound
local button = script.Parent.TextButton
local box = script.Parent.TextBox
The reason this happens is because your music needs to be in workspace (or a folder in workspace) because the workspace is made on the server. If on the workspace everyone can hear is perfectly with no volume changes.
It means the asset (which is sound) is failed to load. In most cases, the SoundID is not inserted correctly or Roblox is down.
I’m not sure if there are any other reasons for this error.