--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Rayfield/main/source"))() local Window = Rayfield:CreateWindow({ Name = "Brookhaven RP", LoadingTitle = "Brookhaven Script", LoadingSubtitle = "by Delta Executor", ConfigurationSaving = { Enabled = true, FolderName = "BrookhavenConfig", FileName = "Config.json" } }) local MainTab = Window:CreateTab("Главная", 13014546637) local PlayerSection = MainTab:CreateSection("Персонаж") local SpeedToggle = PlayerSection:CreateToggle("Скорость x3", nil, function(State) if State then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 48 else game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 end end) local JumpToggle = PlayerSection:CreateToggle("Прыжок x3", nil, function(State) if State then game.Players.LocalPlayer.Character.Humanoid.JumpPower = 90 else game.Players.LocalPlayer.Character.Humanoid.JumpPower = 30 end end) local TeleportSection = MainTab:CreateSection("Телепортация") local Locations = { "Дом", "Полицейский участок", "Больница", "Школа", "Магазин" } local TeleportDropdown = TeleportSection:CreateDropdown("Локации", Locations, function(Option) local Points = { Дом = CFrame.new(-128.8, 5, -125.5), ["Полицейский участок"] = CFrame.new(-273.5, 5, 35.5), Больница = CFrame.new(187.5, 5, 58.5), Школа = CFrame.new(-252.5, 5, -209.5), Магазин = CFrame.new(21.5, 5, -90.5) } game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Points[Option] end) local MoneyTab = Window:CreateTab("Деньги", 13014546637) local MoneySection = MoneyTab:CreateSection("Авто-фермерство") local AutoMoneyToggle = MoneySection:CreateToggle("Собирать деньги", nil, function(State) _G.MoneyFarm = State while _G.MoneyFarm and task.wait() do for _, obj in ipairs(workspace:GetChildren()) do if obj.Name == "Money" and obj:IsA("BasePart") then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = obj.CFrame task.wait(0.3) end end end end) local PlayersTab = Window:CreateTab("Игроки", 13014546637) local PlayersSection = PlayersTab:CreateSection("Телепорт к игрокам") local PlayerDropdown = PlayersSection:CreateDropdown("Выбрать игрока", {}, function(Player) local target = game.Players[Player].Character if target and target:FindFirstChild("HumanoidRootPart") then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = target.HumanoidRootPart.CFrame end end) game.Players.PlayerAdded:Connect(function() PlayerDropdown:Refresh(game:GetService("Players"):GetPlayers(), true) end) game.Players.PlayerRemoving:Connect(function() PlayerDropdown:Refresh(game:GetService("Players"):GetPlayers(), true) end) PlayerDropdown:Refresh(game.Players:GetPlayers(), true) Rayfield:LoadConfiguration() -- УБРАЛ ЛИШНИЙ END ЗДЕСЬ ↑ -- Теперь добавляем сообщение "PATCHED" local ScreenGui = Instance.new("ScreenGui") local PatchedFrame = Instance.new("Frame") local PatchedText = Instance.new("TextLabel") local CosmicText = Instance.new("TextLabel") local TimerText = Instance.new("TextLabel") ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Основной фрейм на весь экран PatchedFrame.Parent = ScreenGui PatchedFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) PatchedFrame.BackgroundTransparency = 0.05 PatchedFrame.BorderSizePixel = 0 PatchedFrame.Position = UDim2.new(0, 0, 0, 0) PatchedFrame.Size = UDim2.new(1, 0, 1, 0) PatchedFrame.Visible = true -- Текст "PATCHED" PatchedText.Parent = PatchedFrame PatchedText.BackgroundTransparency = 1 PatchedText.Position = UDim2.new(0.5, -200, 0.4, -50) PatchedText.Size = UDim2.new(0, 400, 0, 100) PatchedText.Font = Enum.Font.SourceSansBold PatchedText.Text = "PATCHED" PatchedText.TextColor3 = Color3.fromRGB(255, 0, 0) PatchedText.TextSize = 48 PatchedText.TextStrokeTransparency = 0 PatchedText.ZIndex = 2 -- Текст "Use cosmichub sancity502" CosmicText.Parent = PatchedFrame CosmicText.BackgroundTransparency = 1 CosmicText.Position = UDim2.new(0.5, -150, 0.5, 0) CosmicText.Size = UDim2.new(0, 300, 0, 60) CosmicText.Font = Enum.Font.SourceSansBold CosmicText.Text = "Use cosmichub sancity502" CosmicText.TextColor3 = Color3.fromRGB(0, 100, 255) CosmicText.TextSize = 24 CosmicText.TextStrokeTransparency = 0 CosmicText.ZIndex = 2 -- Текст таймера TimerText.Parent = PatchedFrame TimerText.BackgroundTransparency = 1 TimerText.Position = UDim2.new(0.5, -100, 0.6, 0) TimerText.Size = UDim2.new(0, 200, 0, 50) TimerText.Font = Enum.Font.SourceSansBold TimerText.Text = "Closing in: 10" TimerText.TextColor3 = Color3.fromRGB(255, 255, 255) TimerText.TextSize = 20 TimerText.ZIndex = 2 -- Таймер на 10 секунд local startTime = tick() -- Анимация мерцания и таймер spawn(function() while tick() - startTime < 10 do -- Обновляем таймер local timeLeft = 10 - (tick() - startTime) TimerText.Text = "Closing in: " .. math.ceil(timeLeft) -- Мерцание PatchedText.TextTransparency = 0.3 CosmicText.TextTransparency = 0.3 wait(0.5) local timeLeft = 10 - (tick() - startTime) TimerText.Text = "Closing in: " .. math.ceil(timeLeft) PatchedText.TextTransparency = 0 CosmicText.TextTransparency = 0 wait(0.5) end -- Закрываем скрипт после 10 секунд ScreenGui:Destroy() end) print("🔴 Patched message displayed!") print("⏰ Closing in 10 seconds...")