-- Local Music Player local Players = game:GetService("Players") local player = Players.LocalPlayer local camera = workspace.CurrentCamera -- CREATE SOUND local sound = Instance.new("Sound") sound.Name = "LocalMusic" sound.SoundId = "rbxassetid://123143562570662" -- replace with your audio ID sound.Volume = 2 sound.Looped = true sound.Parent = camera -- PLAY sound:Play()