local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local CloseBtn = Instance.new("TextButton") local ScrollFrame = Instance.new("ScrollingFrame") local UIListLayout = Instance.new("UIListLayout") ScreenGui.Parent = game.CoreGui ScreenGui.Name = "CarHubVIP_Ultimate" -- Painel Principal Amarelo MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(255, 215, 0) MainFrame.Position = UDim2.new(0.35, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 380, 0, 450) MainFrame.Active = true MainFrame.Draggable = true -- Título Verde Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Title.Size = UDim2.new(1, 0, 0, 45) Title.Font = Enum.Font.GothamBold Title.Text = "CAR HUB VIP (GRATIS PT-BR)" Title.TextColor3 = Color3.fromRGB(0, 255, 0) Title.TextSize = 18 -- Botão X de Fechar CloseBtn.Parent = MainFrame CloseBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) CloseBtn.Position = UDim2.new(0.88, 0, 0, 0) CloseBtn.Size = UDim2.new(0, 45, 0, 45) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Scroll ScrollFrame.Parent = MainFrame ScrollFrame.Position = UDim2.new(0.05, 0, 0.15, 0) ScrollFrame.Size = UDim2.new(0.9, 0, 0.8, 0) ScrollFrame.CanvasSize = UDim2.new(0, 0, 3.2, 0) ScrollFrame.ScrollBarThickness = 10 ScrollFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 180) UIListLayout.Parent = ScrollFrame UIListLayout.Padding = UDim.new(0, 7) UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center local function AddButton(txt, color, callback) local btn = Instance.new("TextButton") btn.Parent = ScrollFrame btn.Size = UDim2.new(0.95, 0, 0, 38) btn.BackgroundColor3 = color or Color3.fromRGB(0, 0, 0) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.GothamSemibold btn.Text = txt btn.TextSize = 14 btn.MouseButton1Click:Connect(callback) end -- --- 20 FUNÇÕES ORGANIZADAS --- AddButton("1. TRANSFORMA EM CARRO (FAST)", nil, function() local char = game.Players.LocalPlayer.Character char.Humanoid.WalkSpeed = 150 for _, v in pairs(char:GetChildren()) do if v:IsA("Accessory") then v.Handle.Transparency = 1 end if v:IsA("BasePart") then v.Transparency = 0.5 v.Color = Color3.fromRGB(255,0,0) end end end) AddButton("2. SHADERS REALISTA", nil, function() local bloom = Instance.new("BloomEffect", game.Lighting) bloom.Name = "CarHubEffect" local sun = Instance.new("SunRaysEffect", game.Lighting) sun.Name = "CarHubEffect" game.Lighting.Brightness = 3 end) AddButton("3. SHADERS PIXELADO", nil, function() local blur = Instance.new("BlurEffect", game.Lighting) blur.Name = "CarHubEffect" blur.Size = 15 end) AddButton("4. DESATIVAR SHADERS", Color3.fromRGB(200, 0, 0), function() for _, v in pairs(game.Lighting:GetChildren()) do if v.Name == "CarHubEffect" or v:IsA("PostProcessEffect") then v:Destroy() end end for _, v in pairs(game.Workspace:GetDescendants()) do if v:IsA("SelectionBox") and v.Name == "MineBlock" then v:Destroy() end end game.Lighting.Brightness = 1 end) AddButton("5. SHADERS MINECRAFT", nil, function() for _, v in pairs(game.Workspace:GetDescendants()) do if v:IsA("BasePart") and v.Transparency == 0 then local sb = Instance.new("SelectionBox", v) sb.Name = "MineBlock" sb.Adornee = v sb.LineThickness = 0.05 sb.Color3 = Color3.fromRGB(0,0,0) end end local char = game.Players.LocalPlayer.Character for _, p in pairs(char:GetChildren()) do if p:IsA("BasePart") then p.Material = Enum.Material.ForceField end end end) AddButton("6. GIGANTE AVATAR (VISUAL)", nil, function() local hum = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if hum then local function Scale(obj, val) if obj then obj.Value = val end end Scale(hum:FindFirstChild("BodyHeightScale"), 10) Scale(hum:FindFirstChild("BodyWidthScale"), 10) Scale(hum:FindFirstChild("BodyDepthScale"), 10) Scale(hum:FindFirstChild("HeadScale"), 10) print("Gigante Ativado!") end end) AddButton("7. Velocidade VIP (200)", nil, function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200 end) AddButton("8. Super Pulo", nil, function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150 end) AddButton("9. Gravidade Normal", nil, function() game.Workspace.Gravity = 196.2 end) AddButton("10. Atravessar Paredes (Noclip)", nil, function() game:GetService("RunService").Stepped:Connect(function() for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end) AddButton("11. Carro Invisível (Local)", nil, function() local v = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").SeatPart if v then v.Parent.Transparency = 1 end end) AddButton("12. Tornado Giratório", nil, function() local av = Instance.new("BodyAngularVelocity", game.Players.LocalPlayer.Character.HumanoidRootPart) av.AngularVelocity = Vector3.new(0, 100, 0) av.MaxTorque = Vector3.new(0, math.huge, 0) end) AddButton("13. Falsa Explosão Banco", nil, function() print("Boom!") end) AddButton("14. Pneus de Sabão", nil, function() print("Slide") end) AddButton("15. Assento Ejetor", nil, function() print("Eject") end) AddButton("16. Tag Admin no Chat", nil, function() print("Admin Tag") end) AddButton("17. Chuva de Dinheiro", nil, function() print("Money Rain") end) AddButton("18. Filtro Amarelo VIP", nil, function() local cc = Instance.new("ColorCorrectionEffect", game.Lighting) cc.Name = "CarHubEffect" cc.TintColor = Color3.fromRGB(255,255,0) end) AddButton("19. Vira-Lata Humano", nil, function() game.Players.LocalPlayer.Character.Humanoid.HipHeight = -1.5 end) AddButton("20. Destruir Menu", nil, function() ScreenGui:Destroy() end) -- RODAPÉ local footer = Instance.new("TextLabel") footer.Parent = ScrollFrame footer.Size = UDim2.new(0.95, 0, 0, 60) footer.BackgroundTransparency = 1 footer.Font = Enum.Font.GothamBold footer.Text = "EM BREVE MAIS OPÇÕES" footer.TextColor3 = Color3.fromRGB(0, 0, 0) footer.TextSize = 16 print("CAR HUB VIP CARREGADO!")