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("FTF Premium", "Ocean")
- -- Services
- 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")
- -- Variables
- local LocalPlayer = Players.LocalPlayer
- local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
- local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
- local Humanoid = Character:WaitForChild("Humanoid")
- _G.AutoHack = false
- _G.AutoGem = false
- _G.ESP = false
- _G.BeastAlert = false
- _G.AutoEscape = false
- _G.GodMode = false
- _G.AutoRevive = false
- _G.Noclip = false
- _G.ChatSpy = false
- _G.AutoFarm = false
- -- Tabs Creation
- local MainTab = Window:NewTab("Principal")
- local PlayerTab = Window:NewTab("Jugador")
- local ComputerTab = Window:NewTab("Computadoras")
- local BeastTab = Window:NewTab("Beast")
- local ESPTab = Window:NewTab("ESP")
- local AutoFarmTab = Window:NewTab("AutoFarm")
- local MiscTab = Window:NewTab("Misc")
- local EventTab = Window:NewTab("Halloween 2024")
- -- Sections
- local MainSection = MainTab:NewSection("Control del Menú")
- MainSection:NewKeybind("Minimizar/Abrir Menú", "Presiona RightControl", Enum.KeyCode.RightControl, function()
- Library:ToggleUI()
- end)
- MainSection:NewButton("Activar Todo", "Activa todas las funciones", function()
- _G.AutoHack = true
- _G.AutoGem = true
- _G.ESP = true
- _G.BeastAlert = true
- _G.AutoEscape = true
- _G.AutoRevive = true
- _G.ChatSpy = true
- _G.AutoFarm = true
- _G.AntiAFK = true
- Humanoid.WalkSpeed = 100
- Humanoid.JumpPower = 150
- game.StarterGui:SetCore("SendNotification", {
- Title = "FTF Premium",
- Text = "¡Todas las funciones activadas!",
- Duration = 3
- })
- end)
- MainSection:NewButton("Desactivar Todo", "Desactiva todas las funciones", function()
- _G.AutoHack = false
- _G.AutoGem = false
- _G.ESP = false
- _G.BeastAlert = false
- _G.AutoEscape = false
- _G.AutoRevive = false
- _G.ChatSpy = false
- _G.AutoFarm = false
- _G.AntiAFK = false
- Humanoid.WalkSpeed = 16
- Humanoid.JumpPower = 50
- game.StarterGui:SetCore("SendNotification", {
- Title = "FTF Premium",
- Text = "Todas las funciones desactivadas",
- Duration = 3
- })
- end)
- -- Player Modifications
- local PlayerSection = PlayerTab:NewSection("Modificaciones")
- PlayerSection:NewSlider("Velocidad", "Ajusta velocidad", 500, 16, function(s)
- Humanoid.WalkSpeed = s
- end)
- PlayerSection:NewSlider("Salto", "Ajusta salto", 350, 50, function(s)
- Humanoid.JumpPower = s
- end)
- PlayerSection:NewToggle("Noclip", "Atraviesa paredes", function(state)
- _G.Noclip = state
- RunService.Stepped:Connect(function()
- if _G.Noclip then
- Character.Humanoid:ChangeState(11)
- end
- end)
- end)
- PlayerSection:NewToggle("Modo Dios", "Inmunidad total", function(state)
- _G.GodMode = state
- if _G.GodMode then
- local Clone = Character:Clone()
- Clone.Parent = game.Workspace
- Character.Humanoid.Health = 0
- Character = Clone
- Character.Parent = workspace
- LocalPlayer.Character = Clone
- end
- end)
- -- Auto Hack Computers
- local ComputerSection = ComputerTab:NewSection("Hack Options")
- ComputerSection:NewToggle("Auto Hack", "Hackea computadoras automáticamente", function(state)
- _G.AutoHack = state
- while _G.AutoHack do
- wait()
- for _,v in pairs(workspace:GetDescendants()) do
- if v.Name == "ComputerTable" and v:FindFirstChild("Screen") then
- if (HumanoidRootPart.Position - v.PrimaryPart.Position).magnitude <= 10 then
- fireproximityprompt(v.Screen.ProximityPrompt)
- end
- end
- end
- end
- end)
- -- ESP System
- local ESPSection = ESPTab:NewSection("ESP Options")
- local function CreateESP(player)
- local ESP = Instance.new("Highlight")
- ESP.Name = player.Name.."_ESP"
- ESP.FillColor = player.Team.Name == "Beast" and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(0, 255, 0)
- ESP.OutlineColor = Color3.fromRGB(255, 255, 255)
- ESP.FillTransparency = 0.5
- ESP.OutlineTransparency = 0
- ESP.Parent = player.Character
- end
- ESPSection:NewToggle("ESP Jugadores", "Ver jugadores através de paredes", function(state)
- _G.ESP = state
- if _G.ESP then
- for _,player in pairs(Players:GetPlayers()) do
- if player ~= LocalPlayer then
- CreateESP(player)
- end
- end
- else
- for _,player in pairs(Players:GetPlayers()) do
- local esp = player.Character:FindFirstChild(player.Name.."_ESP")
- if esp then esp:Destroy() end
- end
- end
- end)
- -- Auto Farm
- local AutoFarmSection = AutoFarmTab:NewSection("Farming")
- AutoFarmSection:NewToggle("Auto Farm Gemas", "Recolecta gemas automáticamente", function(state)
- _G.AutoGem = state
- while _G.AutoGem do
- wait()
- for _,v in pairs(workspace:GetDescendants()) do
- if v.Name == "Gem" then
- firetouchinterest(HumanoidRootPart, v, 0)
- wait()
- firetouchinterest(HumanoidRootPart, v, 1)
- end
- end
- end
- end)
- -- Beast Alert
- local BeastSection = BeastTab:NewSection("Anti Beast")
- BeastSection:NewToggle("Alerta Beast", "Notifica cuando Beast está cerca", function(state)
- _G.BeastAlert = state
- while _G.BeastAlert do
- wait(0.5)
- for _,player in pairs(Players:GetPlayers()) do
- if player.Team.Name == "Beast" then
- if (HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).magnitude <= 30 then
- game.StarterGui:SetCore("SendNotification", {
- Title = "¡ALERTA!",
- Text = "Beast está cerca",
- Duration = 3
- })
- end
- end
- end
- end
- end)
- -- Auto Escape
- BeastSection:NewToggle("Auto Escape", "Escapa automáticamente de Beast", function(state)
- _G.AutoEscape = state
- end)
- -- Event Items
- local EventSection = EventTab:NewSection("Evento Actual")
- EventSection:NewToggle("Auto Collect Halloween Items", "Recolecta items del evento", function(state)
- _G.EventCollect = state
- while _G.EventCollect do
- wait()
- for _,v in pairs(workspace:GetDescendants()) do
- if v.Name == "HalloweenItem" then
- firetouchinterest(HumanoidRootPart, v, 0)
- wait()
- firetouchinterest(HumanoidRootPart, v, 1)
- end
- end
- end
- end)
- -- Misc Features
- local MiscSection = MiscTab:NewSection("Extras")
- MiscSection:NewToggle("Chat Spy", "Ver mensajes privados", function(state)
- _G.ChatSpy = state
- end)
- MiscSection:NewToggle("Anti AFK", "Previene kick por inactividad", function(state)
- _G.AntiAFK = state
- while _G.AntiAFK do
- wait(60)
- local VirtualUser = game:GetService("VirtualUser")
- VirtualUser:CaptureController()
- VirtualUser:ClickButton2(Vector2.new())
- end
- end)
- MiscSection:NewToggle("Anti Ragdoll", "Previene caídas", function(state)
- _G.AntiRagdoll = state
- if _G.AntiRagdoll then
- game:GetService("RunService").Stepped:Connect(function()
- if Character:FindFirstChild("Ragdolled") then
- Character.Ragdolled:Destroy()
- end
- end)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement