Quick actions

cmd+k|ctrl+k

Navigation

Languages

FE brookhaven radio

Snippet info

Language

Lua

Visibility

public

Author

shashlik

Created

2025-06-11T19:32:27.539379Z

Updated

2025-06-11T20:06:38.655974Z

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)
INFO