-- [[ TETO X HUB: VERSIÓN ELITE FINAL 2026 ]] --
if game.CoreGui:FindFirstChild("TetoX_Elite") then
game.CoreGui.TetoX_Elite:Destroy()
end
local sg = Instance.new("ScreenGui", game.CoreGui)
sg.Name = "TetoX_Elite"
local Main = Instance.new("Frame", sg)
Main.Name = "Main"
Main.Size = UDim2.new(0, 240, 0, 380)
Main.Position = UDim2.new(0.5, -120, 0.4, -190)
Main.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
Main.Active = true
Main.Draggable = true
-- EFECTO DE BRILLO EN LOS COSTADOS (Verde y Azul)
local UIStroke = Instance.new("UIStroke", Main)
UIStroke.Thickness = 3
UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
local UIGradient = Instance.new("UIGradient", UIStroke)
UIGradient.Color = ColorSequence.new{
ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 255, 120)), -- Verde
ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 150, 255)) -- Azul
}
local Corner = Instance.new("UICorner", Main)
Corner.CornerRadius = UDim.new(0, 15)
-- BOTÓN PARA OCULTAR (-)
local Minimize = Instance.new("TextButton", Main)
Minimize.Size = UDim2.new(0, 30, 0, 30)
Minimize.Position = UDim2.new(1, -35, 0, 5)
Minimize.Text = "-"
Minimize.TextColor3 = Color3.new(1, 1, 1)
Minimize.BackgroundTransparency = 1
Minimize.Font = Enum.Font.GothamBold
Minimize.TextSize = 25
local OpenBtn = Instance.new("TextButton", sg)
OpenBtn.Size = UDim2.new(0, 50, 0, 50)
OpenBtn.Position = UDim2.new(0, 10, 0.5, 0)
OpenBtn.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
OpenBtn.Text = "TETO"
OpenBtn.TextColor3 = Color3.fromRGB(0, 255, 120)
OpenBtn.Visible = false
Instance.new("UICorner", OpenBtn).CornerRadius = UDim.new(1, 0)
Instance.new("UIStroke", OpenBtn).Color = Color3.fromRGB(0, 150, 255)
Minimize.MouseButton1Click:Connect(function()
Main.Visible = false
OpenBtn.Visible = true
end)
OpenBtn.MouseButton1Click:Connect(function()
Main.Visible = true
OpenBtn.Visible = false
end)
-- TÍTULO
local Title = Instance.new("TextLabel", Main)
Title.Size = UDim2.new(1, -40, 0, 45)
Title.Text = "TETO X ELITE"
Title.TextColor3 = Color3.new(1, 1, 1)
Title.Font = Enum.Font.GothamBold
Title.TextSize = 18
Title.BackgroundTransparency = 1
-- BUSCADOR REAL
local Input = Instance.new("TextBox", Main)
Input.Size = UDim2.new(0.9, 0, 0, 35)
Input.Position = UDim2.new(0.05, 0, 0, 50)
Input.PlaceholderText = "🔍 Buscar Script Real..."
Input.Text = ""
Input.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
Input.TextColor3 = Color3.new(1, 1, 1)
Instance.new("UICorner", Input).CornerRadius = UDim.new(0, 8)
local Scroll = Instance.new("ScrollingFrame", Main)
Scroll.Size = UDim2.new(1, -20, 1, -110)
Scroll.Position = UDim2.new(0, 10, 0, 95)
Scroll.BackgroundTransparency = 1
Scroll.CanvasSize = UDim2.new(0, 0, 6, 0)
Scroll.ScrollBarThickness = 0
Instance.new("UIListLayout", Scroll).Padding = UDim.new(0, 7)
local function btn(txt, fn, tag)
local b = Instance.new("TextButton", Scroll)
b.Size = UDim2.new(1, 0, 0, 35)
b.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
b.Text = txt
b.TextColor3 = Color3.new(1, 1, 1)
b.Font = Enum.Font.GothamMedium
b.Name = tag or "Extra"
Instance.new("UICorner", b).CornerRadius = UDim.new(0, 8)
b.MouseButton1Click:Connect(fn)
end
-- --- FUNCIONES (NO SE QUITÓ NADA) ---
btn("🚀 FLY V4", function()
_G.F = not _G.F
local p = game.Players.LocalPlayer.Character.HumanoidRootPart
local bv = p:FindFirstChild("TetoF") or Instance.new("BodyVelocity", p)
bv.Name = "TetoF"
bv.MaxForce = Vector3.new(9e9, 9e9, 9e9)
task.spawn(function()
while _G.F do
bv.Velocity = game.Workspace.CurrentCamera.CFrame.LookVector * 70
task.wait()
end
bv:Destroy()
end)
end, "Fix")
btn("🏎️ VFLY", function()
_G.VF = not _G.VF
local p = game.Players.LocalPlayer.Character.HumanoidRootPart
if _G.VF then
local bg = Instance.new("BodyGyro", p)
local bv = Instance.new("BodyVelocity", p)
bg.MaxTorque = Vector3.new(9e9, 9e9, 9e9)
bv.MaxForce = Vector3.new(9e9, 9e9, 9e9)
task.spawn(function()
while _G.VF do
bg.CFrame = game.Workspace.CurrentCamera.CFrame
bv.Velocity = game.Workspace.CurrentCamera.CFrame.LookVector * 120
task.wait()
end
bg:Destroy() bv:Destroy()
end)
end
end, "Fix")
btn("🎯 AIMBOT HEAD", function()
_G.Aim = not _G.Aim
game:GetService("RunService").RenderStepped:Connect(function()
if _G.Aim then
local target = nil
local d = math.huge
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Head") then
local m = (v.Character.Head.Position - game.Players.LocalPlayer.Character.Head.Position).Magnitude
if m < d then d = m target = v end
end
end
if target then game.Workspace.CurrentCamera.CFrame = CFrame.new(game.Workspace.CurrentCamera.CFrame.Position, target.Character.Head.Position) end
end
end)
end, "Fix")
btn("🔴 ESP ROJO", function()
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game.Players.LocalPlayer and v.Character then
local h = Instance.new("Highlight", v.Character)
h.FillColor = Color3.fromRGB(255, 0, 0)
end
end
end, "Fix")
btn("⚡ SPEED (100)", function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end, "Fix")
btn("🆙 JUMP (150)", function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150 end, "Fix")
btn("🛡️ ANTI-LAG", function()
for _, v in pairs(game:GetDescendants()) do
if v:IsA("BasePart") and not v.Parent:FindFirstChild("Humanoid") then v.Material = Enum.Material.SmoothPlastic
elseif v:IsA("Decal") then v:Destroy() end
end
print("Lag corregido.")
end, "Fix")
-- --- BUSCADOR ---
Input.FocusLost:Connect(function(enter)
if enter then
for _, v in pairs(Scroll:GetChildren()) do if v:IsA("TextButton") and v.Name == "Res" then v:Destroy() end end
local t = Input.Text:lower()
if t:find("brook") then
btn("★ ICE BEAR (Brookhaven)", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/IceBear1163/IceBear/main/IceBearHub.lua'))() end, "Res")
elseif t:find("blox") then
btn("★ HOHO (Blox Fruits)", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/acsu123/HOHO_HUB/main/Start.lua'))() end, "Res")
elseif t:find("mm2") then
btn("★ VYNIXU (MM2)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Vynixu/Vynixu-Prints/main/Murder%20Mystery%202/Source.lua"))() end, "Res")
end
end
end)
btn("❌ CERRAR TETO X", function() sg:Destroy() end, "Fix")
Comments
No comments yet
Be the first to share your thoughts!