local library = loadstring(game:HttpGet("https://gist.githubusercontent.com/xNico013/22d6491ee1aa72bff4b81033d13ce853/raw/f4d0435df3ecc1165b92c2bd9a15ea12f3866e8d/Turtle%2520Hub"))()
local Tab1 = library:Window("Scripts")
game.StarterGui:SetCore("SendNotification", {
Title = "Credits";
Text = "Крякнул prespeshnikShashlika";
Icon = "";
Duration = "6";
})
local toggled = false
local runningThread = nil
local connections = {}
Tab1:Label("Radio", Color3.fromRGB(127, 143, 166))
Tab1:Box("FE Play Sound", function(text, focuslost)
if focuslost then
local player = game.Players.LocalPlayer
local function playSound()
wait(0.4)
local soundId = text
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()
-- Aguarda 3 segundos antes de destruir o som
end
playSound()
local args = {
[1] = workspace,
[2] = text,
[3] = 1
}
game:GetService("ReplicatedStorage").RE:FindFirstChild("1Gu1nSound1s"):FireServer(unpack(args))
end
end)