Advertisement
debanhiescobar171

flee script

Dec 13th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.83 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 - Script", "Ocean")
  3.  
  4. -- Main Tab
  5. local Main = Window:NewTab("Principal")
  6. local MainSection = Main:NewSection("Funciones Principales")
  7.  
  8. -- ESP Functions
  9. local function createESP()
  10.     local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/JustEzpi/ROBLOX-Scripts/main/ROBLOX_ESP"))()
  11.     ESP:Toggle(true)
  12.     ESP.Players = true
  13.     ESP.Boxes = true
  14.     ESP.Names = true
  15.     ESP.Tracers = true
  16.     ESP.Distance = true
  17. end
  18.  
  19. MainSection:NewToggle("ESP Universal", "Ver jugadores y objetos", function(state)
  20.     if state then
  21.         createESP()
  22.     else
  23.         -- Disable ESP
  24.     end
  25. end)
  26.  
  27. -- Speed Functions
  28. MainSection:NewSlider("Velocidad", "Ajusta tu velocidad", 100, 16, function(s)
  29.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  30. end)
  31.  
  32. -- Jump Power
  33. MainSection:NewSlider("Salto", "Ajusta poder de salto", 200, 50, function(s)
  34.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  35. end)
  36.  
  37. -- Utility Tab
  38. local Utility = Window:NewTab("Utilidades")
  39. local UtilitySection = Utility:NewSection("Herramientas")
  40.  
  41. -- Fullbright
  42. UtilitySection:NewButton("Fullbright", "Ver en la oscuridad", function()
  43.     local Light = game:GetService("Lighting")
  44.     Light.Brightness = 2
  45.     Light.ClockTime = 14
  46.     Light.FogEnd = 100000
  47.     Light.GlobalShadows = false
  48. end)
  49.  
  50. -- Beast Radar
  51. UtilitySection:NewToggle("Radar Beast", "Detecta al Beast", function(state)
  52.     if state then
  53.         local function findBeast()
  54.             for _, player in pairs(game.Players:GetPlayers()) do
  55.                 if player.Character and player.Character:FindFirstChild("Beast") then
  56.                     return player
  57.                 end
  58.             end
  59.             return nil
  60.         end
  61.        
  62.         -- Beast detection loop
  63.         game:GetService("RunService").RenderStepped:Connect(function()
  64.             local beast = findBeast()
  65.             if beast then
  66.                 -- Create visual indicator
  67.             end
  68.         end)
  69.     end
  70. end)
  71.  
  72. -- Computer ESP
  73. UtilitySection:NewToggle("ESP Computadoras", "Ver computadoras", function(state)
  74.     if state then
  75.         for _, computer in pairs(workspace:GetDescendants()) do
  76.             if computer:IsA("Model") and computer.Name == "Computer" then
  77.                 -- Add ESP to computers
  78.             end
  79.         end
  80.     end
  81. end)
  82.  
  83. -- Admin Commands
  84. local Admin = Window:NewTab("Admin")
  85. local AdminSection = Admin:NewSection("Comandos Admin")
  86.  
  87. AdminSection:NewButton("Cargar Admin", "Carga comandos admin", function()
  88.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  89. end)
  90.  
  91. -- Hack Helper
  92. local Hack = Window:NewTab("Hackeo")
  93. local HackSection = Hack:NewSection("Ayuda de Hackeo")
  94.  
  95. HackSection:NewToggle("Auto-Hack", "Hackeo más rápido", function(state)
  96.     if state then
  97.         -- Speed up hacking minigame
  98.         local function speedHack()
  99.             for _, v in pairs(workspace:GetDescendants()) do
  100.                 if v:IsA("Model") and v.Name == "Computer" then
  101.                     -- Modify hack speed
  102.                 end
  103.             end
  104.         end
  105.     end
  106. end)
  107.  
  108. -- Settings
  109. local Settings = Window:NewTab("Ajustes")
  110. local SettingsSection = Settings:NewSection("Configuración")
  111.  
  112. SettingsSection:NewKeybind("Toggle UI", "Ocultar/Mostrar menú", Enum.KeyCode.RightControl, function()
  113.     Library:ToggleUI()
  114. end)
  115.  
  116. -- Anti AFK
  117. local antiAFK = game:GetService("Players").LocalPlayer.Idled:Connect(function()
  118.     game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  119.     wait(1)
  120.     game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  121. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement