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 playSoundLocal() wait(0.4) local soundId = 142376088 local volume = 1 local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://" .. soundId sound.Volume = volume sound.Looped = true sound.Parent = player:WaitForChild("PlayerGui") sound:Play() delay(300, function() sound:Stop() sound:Destroy() end) end playSoundLocal() local soundId = 142376088 local duration = 300 -- 5 minutes local ReplicatedStorage = game:GetService("ReplicatedStorage") local remoteFolder = ReplicatedStorage:WaitForChild("RE", 5) if not remoteFolder then warn("RemoteEvent folder 'RE' not found in ReplicatedStorage!") return end local remote = remoteFolder:FindFirstChild("1Gu1nSound1s") if not remote or not remote:IsA("RemoteEvent") then warn("RemoteEvent '1Gu1nSound1s' not found in 'RE' folder!") return end remote:FireServer(soundId, duration) end)