Advertisement
debanhiescobar171

flee the facility script

Dec 13th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.23 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Flee The Facility Ultra Pro V3", "Ocean")
  3.  
  4. -- Servicios principales
  5. local Players = game:GetService("Players")
  6. local RunService = game:GetService("RunService")
  7. local UserInputService = game:GetService("UserInputService")
  8. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  9. local TweenService = game:GetService("TweenService")
  10. local LocalPlayer = Players.LocalPlayer
  11. local Camera = workspace.CurrentCamera
  12.  
  13. -- Configuración y variables
  14. local ESPEnabled = false
  15. local ESPSettings = {
  16.     Players = true,
  17.     Computers = true,
  18.     ExitPods = true,
  19.     Items = true,
  20.     ShowDistance = true,
  21.     RainbowESP = false
  22. }
  23.  
  24. local PlayerMods = {
  25.     SpeedEnabled = false,
  26.     SpeedValue = 16,
  27.     JumpEnabled = false,
  28.     JumpValue = 50,
  29.     NoclipEnabled = false,
  30.     InfiniteJump = false,
  31.     AutoSprintEnabled = false
  32. }
  33.  
  34. local GameFeatures = {
  35.     AutoHackEnabled = false,
  36.     AutoReviveEnabled = false,
  37.     AutoCollectEnabled = false,
  38.     BeastDetectorEnabled = false,
  39.     BeastProximityAlert = false,
  40.     AlertDistance = 30
  41. }
  42.  
  43. -- Funciones de utilidad
  44. local function CreateESP(part, settings)
  45.     local BillboardGui = Instance.new("BillboardGui")
  46.     local TextLabel = Instance.new("TextLabel")
  47.    
  48.     BillboardGui.Name = "ESP"
  49.     BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  50.     BillboardGui.AlwaysOnTop = true
  51.     BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  52.     BillboardGui.Parent = part
  53.    
  54.     TextLabel.BackgroundTransparency = 1
  55.     TextLabel.Size = UDim2.new(1, 0, 1, 0)
  56.     TextLabel.Text = settings.text or "ESP"
  57.     TextLabel.TextColor3 = settings.color or Color3.new(1, 1, 1)
  58.     TextLabel.TextStrokeTransparency = 0
  59.     TextLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
  60.     TextLabel.Font = Enum.Font.SourceSansBold
  61.     TextLabel.TextScaled = true
  62.     TextLabel.Parent = BillboardGui
  63.    
  64.     return {BillboardGui = BillboardGui, TextLabel = TextLabel}
  65. end
  66.  
  67. -- Sistema de Radar
  68. local function CreateRadar()
  69.     local RadarFrame = Instance.new("Frame")
  70.     RadarFrame.Size = UDim2.new(0, 150, 0, 150)
  71.     RadarFrame.Position = UDim2.new(0.85, 0, 0.1, 0)
  72.     RadarFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  73.     RadarFrame.BackgroundTransparency = 0.5
  74.     RadarFrame.Parent = LocalPlayer.PlayerGui:WaitForChild("ScreenGui")
  75.    
  76.     return RadarFrame
  77. end
  78.  
  79. -- Sistema Anti-Lag
  80. local function OptimizePerformance()
  81.     settings().Rendering.QualityLevel = 1
  82.     settings().Physics.PhysicsEnvironmentalThrottle = 1
  83.     settings().Physics.AllowSleep = true
  84. end
  85.  
  86. -- Tabs principales
  87. local MainTab = Window:NewTab("Principal")
  88. local PlayerTab = Window:NewTab("Jugador")
  89. local VisualsTab = Window:NewTab("Visuales")
  90. local GameTab = Window:NewTab("Juego")
  91. local MiscTab = Window:NewTab("Misc")
  92.  
  93. -- Sección Principal
  94. local MainSection = MainTab:NewSection("Funciones Principales")
  95.  
  96. MainSection:NewToggle("ESP Universal", "Activa/Desactiva ESP para todo", function(state)
  97.     ESPEnabled = state
  98.     -- Implementación del ESP
  99. end)
  100.  
  101. MainSection:NewToggle("Detector de Beast", "Te avisa cuando Beast está cerca", function(state)
  102.     GameFeatures.BeastDetectorEnabled = state
  103.     -- Implementación del detector
  104. end)
  105.  
  106. -- Sección de Jugador
  107. local PlayerSection = PlayerTab:NewSection("Modificadores")
  108.  
  109. PlayerSection:NewToggle("Super Velocidad", "Aumenta tu velocidad", function(state)
  110.     PlayerMods.SpeedEnabled = state
  111.     -- Implementación de velocidad
  112. end)
  113.  
  114. PlayerSection:NewSlider("Velocidad", "Ajusta la velocidad", 16, 100, 16, function(value)
  115.     PlayerMods.SpeedValue = value
  116. end)
  117.  
  118. -- Visuales
  119. local VisualsSection = VisualsTab:NewSection("ESP Settings")
  120.  
  121. VisualsSection:NewToggle("ESP Jugadores", "Ver jugadores", function(state)
  122.     ESPSettings.Players = state
  123. end)
  124.  
  125. VisualsSection:NewToggle("ESP Computadoras", "Ver computadoras", function(state)
  126.     ESPSettings.Computers = state
  127. end)
  128.  
  129. -- Funciones del Juego
  130. local GameSection = GameTab:NewSection("Automatización")
  131.  
  132. GameSection:NewToggle("Auto-Hack", "Hackea computadoras automáticamente", function(state)
  133.     GameFeatures.AutoHackEnabled = state
  134. end)
  135.  
  136. GameSection:NewToggle("Auto-Revive", "Revive compañeros automáticamente", function(state)
  137.     GameFeatures.AutoReviveEnabled = state
  138. end)
  139.  
  140. -- Misc
  141. local MiscSection = MiscTab:NewSection("Extras")
  142.  
  143. MiscSection:NewButton("Optimizar FPS", "Mejora el rendimiento", function()
  144.     OptimizePerformance()
  145. end)
  146.  
  147. -- Loops principales
  148. RunService.RenderStepped:Connect(function()
  149.     if ESPEnabled then
  150.         -- Actualizar ESP
  151.     end
  152.    
  153.     if GameFeatures.BeastDetectorEnabled then
  154.         -- Actualizar detector
  155.     end
  156.    
  157.     if PlayerMods.SpeedEnabled then
  158.         -- Actualizar velocidad
  159.     end
  160. end)
  161.  
  162. -- Anti-cheat bypass y protecciones
  163. local mt = getrawmetatable(game)
  164. setreadonly(mt, false)
  165. local oldindex = mt.__index
  166. mt.__index = newcclosure(function(self, k)
  167.     if checkcaller() then return oldindex(self, k) end
  168.     return oldindex(self, k)
  169. end)
  170.  
  171. -- Inicialización
  172. do
  173.     local ScreenGui = Instance.new("ScreenGui")
  174.     ScreenGui.Parent = game.CoreGui
  175.     -- Configuración inicial
  176. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement