-- [[ OMNITRIX HUB V11 - ULTRA T POSSESSOR EDITION ]] -- CORES: Corpo Preto, Traços Roxos. PODER: Possuir Objetos no Brookhaven. local player = game.Players.LocalPlayer local mouse = player:GetMouse() local playerGui = player:WaitForChild("PlayerGui") local backpack = player:WaitForChild("Backpack") if playerGui:FindFirstChild("OmnitrixToolsGui") then playerGui.OmnitrixToolsGui:Destroy() end local currentScale = 1.0 local ultraTEffect = nil -- [[ DATABASE DOS ALIENS ]] local aliens = { {name = "ARRAIÁ-JATO", scale = 1.0, speed = 60, toolName = "Voo"}, {name = "XLR8", scale = 1.0, speed = 250, toolName = "Super Velocidade"}, {name = "FRIAGEM", scale = 1.1, speed = 35, toolName = "Congelar"}, {name = "QUATRO BRAÇOS", scale = 1.4, speed = 24, toolName = "Super Soco"}, {name = "MASSA CINZENTA", scale = 0.1, speed = 25, toolName = "Inteligência"}, {name = "ULTRA T", scale = 1.1, speed = 50, toolName = "Possuir Objeto", special = "UltraT"}, {name = "GOKU", scale = 1.1, speed = 200, toolName = "Kamehameha"}, {name = "CHAPOLIN", scale = 1.0, speed = 45, toolName = "Marreta Biônica", special = "Chapolin"}, {name = "GIGANTE", scale = 10.0, speed = 40, toolName = "Pisada"}, {name = "RESTAURAR", scale = 1.0, speed = 16, toolName = nil} } local currentIdx = 1 -- [[ INTERFACE ]] local ScreenGui = Instance.new("ScreenGui", playerGui) ScreenGui.Name = "OmnitrixToolsGui" local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 300, 0, 160) MainFrame.Position = UDim2.new(0.35, 0, 0.3, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 0, 30) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(128, 0, 255) MainFrame.Active = true; MainFrame.Draggable = true Instance.new("UICorner", MainFrame) local AlienTitle = Instance.new("TextLabel", MainFrame) AlienTitle.Size = UDim2.new(1, 0, 0.4, 0); AlienTitle.BackgroundTransparency = 1 AlienTitle.Text = "SELECIONE"; AlienTitle.TextColor3 = Color3.fromRGB(180, 100, 255) AlienTitle.TextSize = 26; AlienTitle.Font = Enum.Font.Cartoon local NextBtn = Instance.new("TextButton", MainFrame) NextBtn.Size = UDim2.new(0, 60, 0, 45); NextBtn.Position = UDim2.new(0.75, 0, 0.35, 0) NextBtn.Text = "👉"; NextBtn.TextSize = 35; NextBtn.BackgroundTransparency = 1; NextBtn.TextColor3 = Color3.new(1, 1, 1) local BackBtn = Instance.new("TextButton", MainFrame) BackBtn.Size = UDim2.new(0, 60, 0, 45); BackBtn.Position = UDim2.new(0.05, 0, 0.35, 0) BackBtn.Text = "👈"; BackBtn.TextSize = 35; BackBtn.BackgroundTransparency = 1; BackBtn.TextColor3 = Color3.new(1, 1, 1) local UseBtn = Instance.new("TextButton", MainFrame) UseBtn.Size = UDim2.new(0.8, 0, 0.25, 0); UseBtn.Position = UDim2.new(0.1, 0, 0.7, 0) UseBtn.BackgroundColor3 = Color3.fromRGB(128, 0, 255); UseBtn.Text = "TRANSFORMAR" UseBtn.TextColor3 = Color3.new(1, 1, 1); UseBtn.Font = Enum.Font.SourceSansBold; UseBtn.TextSize = 20 Instance.new("UICorner", UseBtn) -- [[ LOOP DE ESCALA ]] task.spawn(function() while true do local char = player.Character local hum = char and char:FindFirstChild("Humanoid") if hum then for _, sName in pairs({"BodyHeightScale", "BodyWidthScale", "BodyDepthScale", "HeadScale"}) do local sObj = hum:FindFirstChild(sName) if sObj and math.abs(sObj.Value - currentScale) > 0.01 then sObj.Value = currentScale end end end task.wait(0.05) end end) -- [[ FUNÇÃO DE POSSUIR ]] local function possess(target) if target and target:IsA("BasePart") then local char = player.Character local selection = Instance.new("SelectionBox", target) selection.Color3 = Color3.fromRGB(128, 0, 255) selection.LineThickness = 0.1 -- Efeito de "Entrar" no objeto char.HumanoidRootPart.CFrame = target.CFrame for _, p in pairs(char:GetChildren()) do if p:IsA("BasePart") then p.Transparency = 1 end end task.wait(5) -- Fica possuindo por 5 segundos selection:Destroy() for _, p in pairs(char:GetChildren()) do if p:IsA("BasePart") then p.Transparency = (p.Name == "HumanoidRootPart" and 1 or 0) end end end end -- [[ TRANSFORMAÇÃO ]] local function transform() local char = player.Character if not char then return end local data = aliens[currentIdx] currentScale = data.scale char.Humanoid.WalkSpeed = data.speed -- Limpeza total if ultraTEffect then ultraTEffect:Destroy(); ultraTEffect = nil end for _, part in pairs(char:GetChildren()) do if part:IsA("BasePart") then part.Color = Color3.new(1,1,1) part.Transparency = (part.Name == "HumanoidRootPart" and 1 or 0) end end for _, item in pairs(backpack:GetChildren()) do if item:GetAttribute("Omni") then item:Destroy() end end -- APLICAR VISUAL ULTRA T (PRETO/ROXO) if data.name == "ULTRA T" then for _, part in pairs(char:GetChildren()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.Color = Color3.new(0, 0, 0) -- Corpo Preto end end ultraTEffect = Instance.new("SelectionBox", char) ultraTEffect.Adornee = char ultraTEffect.Color3 = Color3.fromRGB(128, 0, 255) -- Linhas Roxas ultraTEffect.LineThickness = 0.05 end -- Criar Tool if data.toolName then local tool = Instance.new("Tool", backpack) tool.Name = data.toolName; tool.RequiresHandle = false; tool:SetAttribute("Omni", true) tool.Activated:Connect(function() if data.special == "UltraT" then possess(mouse.Target) elseif data.name == "GIGANTE" then local s = Instance.new("Part", workspace) s.Size = Vector3.new(60, 2, 60); s.Anchored = true; s.CFrame = char.HumanoidRootPart.CFrame s.Transparency = 0.5; s.Color = Color3.new(1,1,1); game.Debris:AddItem(s, 0.4) end end) end -- Flash de luz local f = Instance.new("Frame", ScreenGui) f.Size = UDim2.new(1,0,1,0); f.BackgroundColor3 = Color3.new(0.5, 0, 1) task.spawn(function() for i=0,1,0.1 do f.BackgroundTransparency=i; task.wait(0.05) end; f:Destroy() end) end NextBtn.MouseButton1Click:Connect(function() currentIdx = currentIdx % #aliens + 1; AlienTitle.Text = aliens[currentIdx].name end) BackBtn.MouseButton1Click:Connect(function() currentIdx = (currentIdx - 2) % #aliens + 1; AlienTitle.Text = aliens[currentIdx].name end) UseBtn.MouseButton1Click:Connect(transform) AlienTitle.Text = aliens[currentIdx].name