Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- UI Library
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Flee The Facility Pro", "DarkTheme")
- -- Variables
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- local RunService = game:GetService("RunService")
- local UserInputService = game:GetService("UserInputService")
- -- Main Tab
- local MainTab = Window:NewTab("Principal")
- local MainSection = MainTab:NewSection("Funciones Principales")
- -- ESP System
- local function CreateESP(object, color, text)
- local ESP = Instance.new("BillboardGui")
- local Text = Instance.new("TextLabel")
- ESP.Name = "ESP"
- ESP.Size = UDim2.new(0, 200, 0, 50)
- ESP.AlwaysOnTop = true
- ESP.Parent = object
- Text.BackgroundTransparency = 1
- Text.Size = UDim2.new(0, 200, 0, 50)
- Text.Text = text
- Text.TextColor3 = color
- Text.TextScaled = true
- Text.Parent = ESP
- end
- MainSection:NewToggle("ESP Jugadores", "Ver jugadores a través de paredes", function(state)
- if state then
- for _, player in ipairs(Players:GetPlayers()) do
- if player ~= LocalPlayer and player.Character then
- CreateESP(player.Character.Head, Color3.fromRGB(255, 255, 255), player.Name)
- end
- end
- else
- for _, player in ipairs(Players:GetPlayers()) do
- if player.Character and player.Character:FindFirstChild("Head"):FindFirstChild("ESP") then
- player.Character.Head.ESP:Destroy()
- end
- end
- end
- end)
- -- Speed Control
- MainSection:NewSlider("Velocidad", "Ajusta tu velocidad", 100, 16, function(value)
- if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then
- LocalPlayer.Character.Humanoid.WalkSpeed = value
- end
- end)
- -- Jump Power
- MainSection:NewSlider("Salto", "Ajusta la potencia de salto", 200, 50, function(value)
- if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then
- LocalPlayer.Character.Humanoid.JumpPower = value
- end
- end)
- -- Utility Tab
- local UtilityTab = Window:NewTab("Utilidades")
- local UtilitySection = UtilityTab:NewSection("Herramientas")
- -- Fullbright
- UtilitySection:NewButton("Fullbright", "Ilumina todo el mapa", function()
- local Lighting = game:GetService("Lighting")
- Lighting.Brightness = 2
- Lighting.ClockTime = 14
- Lighting.FogEnd = 100000
- Lighting.GlobalShadows = false
- Lighting.Ambient = Color3.fromRGB(178, 178, 178)
- end)
- -- Beast Detector
- UtilitySection:NewToggle("Detector Beast", "Alerta cuando el Beast está cerca", function(state)
- local beastDetection = nil
- if state then
- beastDetection = RunService.Heartbeat:Connect(function()
- for _, player in ipairs(Players:GetPlayers()) do
- if player.Character and player.Character:FindFirstChild("Beast") then
- local distance = (LocalPlayer.Character.HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).Magnitude
- if distance < 50 then
- game.StarterGui:SetCore("SendNotification", {
- Title = "¡Alerta!",
- Text = "Beast cerca (" .. math.floor(distance) .. "m)",
- Duration = 1
- })
- end
- end
- end
- end)
- else
- if beastDetection then
- beastDetection:Disconnect()
- end
- end
- end)
- -- Computer ESP
- UtilitySection:NewToggle("ESP Computadoras", "Ver computadoras", function(state)
- if state then
- for _, computer in ipairs(workspace:GetDescendants()) do
- if computer:IsA("Model") and computer.Name == "Computer" then
- CreateESP(computer.PrimaryPart, Color3.fromRGB(0, 255, 0), "Computadora")
- end
- end
- else
- for _, computer in ipairs(workspace:GetDescendants()) do
- if computer:IsA("Model") and computer.Name == "Computer" and computer.PrimaryPart:FindFirstChild("ESP") then
- computer.PrimaryPart.ESP:Destroy()
- end
- end
- end
- end)
- -- Admin Commands
- local AdminTab = Window:NewTab("Admin")
- local AdminSection = AdminTab:NewSection("Comandos Admin")
- AdminSection:NewButton("Infinite Yield", "Cargar comandos admin", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- -- Hack Helper
- local HackTab = Window:NewTab("Hackeo")
- local HackSection = HackTab:NewSection("Ayuda de Hackeo")
- HackSection:NewToggle("Auto-Hack Rápido", "Acelera el hackeo", function(state)
- _G.AutoHack = state
- while _G.AutoHack do
- local computers = workspace:GetDescendants()
- for _, computer in ipairs(computers) do
- if computer:IsA("Model") and computer.Name == "Computer" then
- local hackProgress = computer:FindFirstChild("HackProgress")
- if hackProgress and hackProgress.Value < 100 then
- hackProgress.Value = hackProgress.Value + 1
- end
- end
- end
- wait(0.1)
- end
- end)
- -- Settings
- local SettingsTab = Window:NewTab("Ajustes")
- local SettingsSection = SettingsTab:NewSection("Configuración")
- -- Toggle UI
- SettingsSection:NewKeybind("Ocultar/Mostrar UI", "Tecla para ocultar menú", Enum.KeyCode.RightControl, function()
- Library:ToggleUI()
- end)
- -- Anti AFK
- local VirtualUser = game:GetService("VirtualUser")
- LocalPlayer.Idled:Connect(function()
- VirtualUser:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
- wait(1)
- VirtualUser:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement