Advertisement
debanhiescobar171

FTF Premium Script [29/Nov/2024]

Nov 29th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.71 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("FTF Premium", "Ocean")
  3.  
  4. -- Services
  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.  
  11. -- Variables
  12. local LocalPlayer = Players.LocalPlayer
  13. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  14. local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
  15. local Humanoid = Character:WaitForChild("Humanoid")
  16. _G.AutoHack = false
  17. _G.AutoGem = false
  18. _G.ESP = false
  19. _G.BeastAlert = false
  20. _G.AutoEscape = false
  21. _G.GodMode = false
  22. _G.AutoRevive = false
  23. _G.Noclip = false
  24. _G.ChatSpy = false
  25. _G.AutoFarm = false
  26.  
  27. -- Tabs Creation
  28. local MainTab = Window:NewTab("Principal")
  29. local PlayerTab = Window:NewTab("Jugador")
  30. local ComputerTab = Window:NewTab("Computadoras")
  31. local BeastTab = Window:NewTab("Beast")
  32. local ESPTab = Window:NewTab("ESP")
  33. local AutoFarmTab = Window:NewTab("AutoFarm")
  34. local MiscTab = Window:NewTab("Misc")
  35. local EventTab = Window:NewTab("Halloween 2024")
  36.  
  37. -- Sections
  38. local MainSection = MainTab:NewSection("Control del Menú")
  39.  
  40. MainSection:NewKeybind("Minimizar/Abrir Menú", "Presiona RightControl", Enum.KeyCode.RightControl, function()
  41.     Library:ToggleUI()
  42. end)
  43.  
  44. MainSection:NewButton("Activar Todo", "Activa todas las funciones", function()
  45.     _G.AutoHack = true
  46.     _G.AutoGem = true
  47.     _G.ESP = true
  48.     _G.BeastAlert = true
  49.     _G.AutoEscape = true
  50.     _G.AutoRevive = true
  51.     _G.ChatSpy = true
  52.     _G.AutoFarm = true
  53.     _G.AntiAFK = true
  54.     Humanoid.WalkSpeed = 100
  55.     Humanoid.JumpPower = 150
  56.    
  57.     game.StarterGui:SetCore("SendNotification", {
  58.         Title = "FTF Premium",
  59.         Text = "¡Todas las funciones activadas!",
  60.         Duration = 3
  61.     })
  62. end)
  63.  
  64. MainSection:NewButton("Desactivar Todo", "Desactiva todas las funciones", function()
  65.     _G.AutoHack = false
  66.     _G.AutoGem = false
  67.     _G.ESP = false
  68.     _G.BeastAlert = false
  69.     _G.AutoEscape = false
  70.     _G.AutoRevive = false
  71.     _G.ChatSpy = false
  72.     _G.AutoFarm = false
  73.     _G.AntiAFK = false
  74.     Humanoid.WalkSpeed = 16
  75.     Humanoid.JumpPower = 50
  76.    
  77.     game.StarterGui:SetCore("SendNotification", {
  78.         Title = "FTF Premium",
  79.         Text = "Todas las funciones desactivadas",
  80.         Duration = 3
  81.     })
  82. end)
  83.  
  84. -- Player Modifications
  85. local PlayerSection = PlayerTab:NewSection("Modificaciones")
  86. PlayerSection:NewSlider("Velocidad", "Ajusta velocidad", 500, 16, function(s)
  87.     Humanoid.WalkSpeed = s
  88. end)
  89.  
  90. PlayerSection:NewSlider("Salto", "Ajusta salto", 350, 50, function(s)
  91.     Humanoid.JumpPower = s
  92. end)
  93.  
  94. PlayerSection:NewToggle("Noclip", "Atraviesa paredes", function(state)
  95.     _G.Noclip = state
  96.     RunService.Stepped:Connect(function()
  97.         if _G.Noclip then
  98.             Character.Humanoid:ChangeState(11)
  99.         end
  100.     end)
  101. end)
  102.  
  103. PlayerSection:NewToggle("Modo Dios", "Inmunidad total", function(state)
  104.     _G.GodMode = state
  105.     if _G.GodMode then
  106.         local Clone = Character:Clone()
  107.         Clone.Parent = game.Workspace
  108.         Character.Humanoid.Health = 0
  109.         Character = Clone
  110.         Character.Parent = workspace
  111.         LocalPlayer.Character = Clone
  112.     end
  113. end)
  114.  
  115. -- Auto Hack Computers
  116. local ComputerSection = ComputerTab:NewSection("Hack Options")
  117. ComputerSection:NewToggle("Auto Hack", "Hackea computadoras automáticamente", function(state)
  118.     _G.AutoHack = state
  119.     while _G.AutoHack do
  120.         wait()
  121.         for _,v in pairs(workspace:GetDescendants()) do
  122.             if v.Name == "ComputerTable" and v:FindFirstChild("Screen") then
  123.                 if (HumanoidRootPart.Position - v.PrimaryPart.Position).magnitude <= 10 then
  124.                     fireproximityprompt(v.Screen.ProximityPrompt)
  125.                 end
  126.             end
  127.         end
  128.     end
  129. end)
  130.  
  131. -- ESP System
  132. local ESPSection = ESPTab:NewSection("ESP Options")
  133. local function CreateESP(player)
  134.     local ESP = Instance.new("Highlight")
  135.     ESP.Name = player.Name.."_ESP"
  136.     ESP.FillColor = player.Team.Name == "Beast" and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(0, 255, 0)
  137.     ESP.OutlineColor = Color3.fromRGB(255, 255, 255)
  138.     ESP.FillTransparency = 0.5
  139.     ESP.OutlineTransparency = 0
  140.     ESP.Parent = player.Character
  141. end
  142.  
  143. ESPSection:NewToggle("ESP Jugadores", "Ver jugadores através de paredes", function(state)
  144.     _G.ESP = state
  145.     if _G.ESP then
  146.         for _,player in pairs(Players:GetPlayers()) do
  147.             if player ~= LocalPlayer then
  148.                 CreateESP(player)
  149.             end
  150.         end
  151.     else
  152.         for _,player in pairs(Players:GetPlayers()) do
  153.             local esp = player.Character:FindFirstChild(player.Name.."_ESP")
  154.             if esp then esp:Destroy() end
  155.         end
  156.     end
  157. end)
  158.  
  159. -- Auto Farm
  160. local AutoFarmSection = AutoFarmTab:NewSection("Farming")
  161. AutoFarmSection:NewToggle("Auto Farm Gemas", "Recolecta gemas automáticamente", function(state)
  162.     _G.AutoGem = state
  163.     while _G.AutoGem do
  164.         wait()
  165.         for _,v in pairs(workspace:GetDescendants()) do
  166.             if v.Name == "Gem" then
  167.                 firetouchinterest(HumanoidRootPart, v, 0)
  168.                 wait()
  169.                 firetouchinterest(HumanoidRootPart, v, 1)
  170.             end
  171.         end
  172.     end
  173. end)
  174.  
  175. -- Beast Alert
  176. local BeastSection = BeastTab:NewSection("Anti Beast")
  177. BeastSection:NewToggle("Alerta Beast", "Notifica cuando Beast está cerca", function(state)
  178.     _G.BeastAlert = state
  179.     while _G.BeastAlert do
  180.         wait(0.5)
  181.         for _,player in pairs(Players:GetPlayers()) do
  182.             if player.Team.Name == "Beast" then
  183.                 if (HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).magnitude <= 30 then
  184.                     game.StarterGui:SetCore("SendNotification", {
  185.                         Title = "¡ALERTA!",
  186.                         Text = "Beast está cerca",
  187.                         Duration = 3
  188.                     })
  189.                 end
  190.             end
  191.         end
  192.     end
  193. end)
  194.  
  195. -- Auto Escape
  196. BeastSection:NewToggle("Auto Escape", "Escapa automáticamente de Beast", function(state)
  197.     _G.AutoEscape = state
  198. end)
  199.  
  200. -- Event Items
  201. local EventSection = EventTab:NewSection("Evento Actual")
  202. EventSection:NewToggle("Auto Collect Halloween Items", "Recolecta items del evento", function(state)
  203.     _G.EventCollect = state
  204.     while _G.EventCollect do
  205.         wait()
  206.         for _,v in pairs(workspace:GetDescendants()) do
  207.             if v.Name == "HalloweenItem" then
  208.                 firetouchinterest(HumanoidRootPart, v, 0)
  209.                 wait()
  210.                 firetouchinterest(HumanoidRootPart, v, 1)
  211.             end
  212.         end
  213.     end
  214. end)
  215.  
  216. -- Misc Features
  217. local MiscSection = MiscTab:NewSection("Extras")
  218. MiscSection:NewToggle("Chat Spy", "Ver mensajes privados", function(state)
  219.     _G.ChatSpy = state
  220. end)
  221.  
  222. MiscSection:NewToggle("Anti AFK", "Previene kick por inactividad", function(state)
  223.     _G.AntiAFK = state
  224.     while _G.AntiAFK do
  225.         wait(60)
  226.         local VirtualUser = game:GetService("VirtualUser")
  227.         VirtualUser:CaptureController()
  228.         VirtualUser:ClickButton2(Vector2.new())
  229.     end
  230. end)
  231.  
  232. MiscSection:NewToggle("Anti Ragdoll", "Previene caídas", function(state)
  233.     _G.AntiRagdoll = state
  234.     if _G.AntiRagdoll then
  235.         game:GetService("RunService").Stepped:Connect(function()
  236.             if Character:FindFirstChild("Ragdolled") then
  237.                 Character.Ragdolled:Destroy()
  238.             end
  239.         end)
  240.     end
  241. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement