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 - Script", "Ocean")
- -- Main Tab
- local Main = Window:NewTab("Principal")
- local MainSection = Main:NewSection("Funciones Principales")
- -- ESP Functions
- local function createESP()
- local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/JustEzpi/ROBLOX-Scripts/main/ROBLOX_ESP"))()
- ESP:Toggle(true)
- ESP.Players = true
- ESP.Boxes = true
- ESP.Names = true
- ESP.Tracers = true
- ESP.Distance = true
- end
- MainSection:NewToggle("ESP Universal", "Ver jugadores y objetos", function(state)
- if state then
- createESP()
- else
- -- Disable ESP
- end
- end)
- -- Speed Functions
- MainSection:NewSlider("Velocidad", "Ajusta tu velocidad", 100, 16, function(s)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- -- Jump Power
- MainSection:NewSlider("Salto", "Ajusta poder de salto", 200, 50, function(s)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- -- Utility Tab
- local Utility = Window:NewTab("Utilidades")
- local UtilitySection = Utility:NewSection("Herramientas")
- -- Fullbright
- UtilitySection:NewButton("Fullbright", "Ver en la oscuridad", function()
- local Light = game:GetService("Lighting")
- Light.Brightness = 2
- Light.ClockTime = 14
- Light.FogEnd = 100000
- Light.GlobalShadows = false
- end)
- -- Beast Radar
- UtilitySection:NewToggle("Radar Beast", "Detecta al Beast", function(state)
- if state then
- local function findBeast()
- for _, player in pairs(game.Players:GetPlayers()) do
- if player.Character and player.Character:FindFirstChild("Beast") then
- return player
- end
- end
- return nil
- end
- -- Beast detection loop
- game:GetService("RunService").RenderStepped:Connect(function()
- local beast = findBeast()
- if beast then
- -- Create visual indicator
- end
- end)
- end
- end)
- -- Computer ESP
- UtilitySection:NewToggle("ESP Computadoras", "Ver computadoras", function(state)
- if state then
- for _, computer in pairs(workspace:GetDescendants()) do
- if computer:IsA("Model") and computer.Name == "Computer" then
- -- Add ESP to computers
- end
- end
- end
- end)
- -- Admin Commands
- local Admin = Window:NewTab("Admin")
- local AdminSection = Admin:NewSection("Comandos Admin")
- AdminSection:NewButton("Cargar Admin", "Carga comandos admin", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- -- Hack Helper
- local Hack = Window:NewTab("Hackeo")
- local HackSection = Hack:NewSection("Ayuda de Hackeo")
- HackSection:NewToggle("Auto-Hack", "Hackeo más rápido", function(state)
- if state then
- -- Speed up hacking minigame
- local function speedHack()
- for _, v in pairs(workspace:GetDescendants()) do
- if v:IsA("Model") and v.Name == "Computer" then
- -- Modify hack speed
- end
- end
- end
- end
- end)
- -- Settings
- local Settings = Window:NewTab("Ajustes")
- local SettingsSection = Settings:NewSection("Configuración")
- SettingsSection:NewKeybind("Toggle UI", "Ocultar/Mostrar menú", Enum.KeyCode.RightControl, function()
- Library:ToggleUI()
- end)
- -- Anti AFK
- local antiAFK = game:GetService("Players").LocalPlayer.Idled:Connect(function()
- game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- wait(1)
- game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement