Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Flee The Facility Ultra Pro V3", "Ocean")
- -- Servicios principales
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local UserInputService = game:GetService("UserInputService")
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- local TweenService = game:GetService("TweenService")
- local LocalPlayer = Players.LocalPlayer
- local Camera = workspace.CurrentCamera
- -- Configuración y variables
- local ESPEnabled = false
- local ESPSettings = {
- Players = true,
- Computers = true,
- ExitPods = true,
- Items = true,
- ShowDistance = true,
- RainbowESP = false
- }
- local PlayerMods = {
- SpeedEnabled = false,
- SpeedValue = 16,
- JumpEnabled = false,
- JumpValue = 50,
- NoclipEnabled = false,
- InfiniteJump = false,
- AutoSprintEnabled = false
- }
- local GameFeatures = {
- AutoHackEnabled = false,
- AutoReviveEnabled = false,
- AutoCollectEnabled = false,
- BeastDetectorEnabled = false,
- BeastProximityAlert = false,
- AlertDistance = 30
- }
- -- Funciones de utilidad
- local function CreateESP(part, settings)
- local BillboardGui = Instance.new("BillboardGui")
- local TextLabel = Instance.new("TextLabel")
- BillboardGui.Name = "ESP"
- BillboardGui.Size = UDim2.new(0, 200, 0, 50)
- BillboardGui.AlwaysOnTop = true
- BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
- BillboardGui.Parent = part
- TextLabel.BackgroundTransparency = 1
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Text = settings.text or "ESP"
- TextLabel.TextColor3 = settings.color or Color3.new(1, 1, 1)
- TextLabel.TextStrokeTransparency = 0
- TextLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.TextScaled = true
- TextLabel.Parent = BillboardGui
- return {BillboardGui = BillboardGui, TextLabel = TextLabel}
- end
- -- Sistema de Radar
- local function CreateRadar()
- local RadarFrame = Instance.new("Frame")
- RadarFrame.Size = UDim2.new(0, 150, 0, 150)
- RadarFrame.Position = UDim2.new(0.85, 0, 0.1, 0)
- RadarFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- RadarFrame.BackgroundTransparency = 0.5
- RadarFrame.Parent = LocalPlayer.PlayerGui:WaitForChild("ScreenGui")
- return RadarFrame
- end
- -- Sistema Anti-Lag
- local function OptimizePerformance()
- settings().Rendering.QualityLevel = 1
- settings().Physics.PhysicsEnvironmentalThrottle = 1
- settings().Physics.AllowSleep = true
- end
- -- Tabs principales
- local MainTab = Window:NewTab("Principal")
- local PlayerTab = Window:NewTab("Jugador")
- local VisualsTab = Window:NewTab("Visuales")
- local GameTab = Window:NewTab("Juego")
- local MiscTab = Window:NewTab("Misc")
- -- Sección Principal
- local MainSection = MainTab:NewSection("Funciones Principales")
- MainSection:NewToggle("ESP Universal", "Activa/Desactiva ESP para todo", function(state)
- ESPEnabled = state
- -- Implementación del ESP
- end)
- MainSection:NewToggle("Detector de Beast", "Te avisa cuando Beast está cerca", function(state)
- GameFeatures.BeastDetectorEnabled = state
- -- Implementación del detector
- end)
- -- Sección de Jugador
- local PlayerSection = PlayerTab:NewSection("Modificadores")
- PlayerSection:NewToggle("Super Velocidad", "Aumenta tu velocidad", function(state)
- PlayerMods.SpeedEnabled = state
- -- Implementación de velocidad
- end)
- PlayerSection:NewSlider("Velocidad", "Ajusta la velocidad", 16, 100, 16, function(value)
- PlayerMods.SpeedValue = value
- end)
- -- Visuales
- local VisualsSection = VisualsTab:NewSection("ESP Settings")
- VisualsSection:NewToggle("ESP Jugadores", "Ver jugadores", function(state)
- ESPSettings.Players = state
- end)
- VisualsSection:NewToggle("ESP Computadoras", "Ver computadoras", function(state)
- ESPSettings.Computers = state
- end)
- -- Funciones del Juego
- local GameSection = GameTab:NewSection("Automatización")
- GameSection:NewToggle("Auto-Hack", "Hackea computadoras automáticamente", function(state)
- GameFeatures.AutoHackEnabled = state
- end)
- GameSection:NewToggle("Auto-Revive", "Revive compañeros automáticamente", function(state)
- GameFeatures.AutoReviveEnabled = state
- end)
- -- Misc
- local MiscSection = MiscTab:NewSection("Extras")
- MiscSection:NewButton("Optimizar FPS", "Mejora el rendimiento", function()
- OptimizePerformance()
- end)
- -- Loops principales
- RunService.RenderStepped:Connect(function()
- if ESPEnabled then
- -- Actualizar ESP
- end
- if GameFeatures.BeastDetectorEnabled then
- -- Actualizar detector
- end
- if PlayerMods.SpeedEnabled then
- -- Actualizar velocidad
- end
- end)
- -- Anti-cheat bypass y protecciones
- local mt = getrawmetatable(game)
- setreadonly(mt, false)
- local oldindex = mt.__index
- mt.__index = newcclosure(function(self, k)
- if checkcaller() then return oldindex(self, k) end
- return oldindex(self, k)
- end)
- -- Inicialización
- do
- local ScreenGui = Instance.new("ScreenGui")
- ScreenGui.Parent = game.CoreGui
- -- Configuración inicial
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement