local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local win = lib:Window("test") win:Button("test", function() local player = game.Players.LocalPlayer local function playSound() wait(0.4) local soundId = 142376088 -- Updated sound ID here local volume = 1 local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://" .. soundId sound.Volume = volume sound.Looped = true -- Loop the sound sound.Parent = player:WaitForChild("PlayerGui") sound:Play() -- Stop sound after 5 minutes (300 seconds) delay(300, function() sound:Stop() sound:Destroy() end) end playSound() local args = { [1] = workspace, [2] = 142376088, -- Updated sound ID here too [3] = 1 } game:GetService("ReplicatedStorage").RE:FindFirstChild("1Gu1nSound1s"):FireServer(unpack(args)) end)