-- Continuous hijack for hitsound ID 101627462619966 -- Will scan workspace.Sounds and replace whenever the sound appears local folder = "MyHitsounds" if not isfolder(folder) then makefolder(folder) end local soundFile = folder.."/hit.mp3" -- Function to hijack a sound if it matches the target ID local function hijackSound(obj) if obj:IsA("Sound") and obj.SoundId == "rbxassetid://101627462619966" then print("[Hitsound Hijack] Found hitsound:", obj.Name) if isfile(soundFile) then obj.SoundId = getcustomasset(soundFile) print("[Hitsound Hijack] Replaced with local file:", soundFile) else warn("[Hitsound Hijack] No local file found at "..soundFile) end end end -- Scan existing sounds for _, child in ipairs(workspace.Sounds:GetChildren()) do hijackSound(child) end -- Watch for new sounds being added workspace.Sounds.ChildAdded:Connect(function(child) hijackSound(child) end)