local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local win = lib:Window("Zamiel") win:Button("Zamiel", function() local player = game.Players.LocalPlayer local function playSound() wait(0.4) local soundId = 82305442903343 local volume = 1 local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://" .. soundId sound.Volume = volume sound.Looped = false sound.Parent = player:WaitForChild("PlayerGui") sound:Play() end playSound() local args = { [1] = workspace, [2] = 18406731725, [3] = 1 } game:GetService("ReplicatedStorage").RE:FindFirstChild("1Gu1nSound1s"):FireServer(unpack(args)) end)