local Player = game.Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local UIS = game:GetService("UserInputService") -- 1. LIMPIEZA if PlayerGui:FindFirstChild("VistaSystem") then PlayerGui.VistaSystem:Destroy() end local Screen = Instance.new("ScreenGui", PlayerGui) Screen.Name = "VistaSystem" Screen.DisplayOrder = 10000 Screen.IgnoreGuiInset = true -- 2. FONDO DE CUADRADITOS local BG = Instance.new("Frame", Screen) BG.Size = UDim2.new(1, 0, 1, 0) BG.BackgroundColor3 = Color3.fromRGB(0, 0, 20) local colors = { Color3.fromRGB(0, 150, 255), Color3.fromRGB(0, 80, 200), Color3.fromRGB(0, 200, 100), Color3.fromRGB(0, 30, 60), Color3.fromRGB(0, 40, 0), Color3.fromRGB(150, 255, 255) } local grid = Instance.new("UIGridLayout", BG) grid.CellSize = UDim2.new(0, 40, 0, 40) grid.CellPadding = UDim2.new(0, 0, 0, 0) for i = 1, 600 do local t = Instance.new("Frame", BG) t.BorderSizePixel = 0 t.BackgroundColor3 = colors[math.random(1, #colors)] end -- 3. EL MOUSE local FakeMouse = Instance.new("ImageLabel", Screen) FakeMouse.Size = UDim2.new(0, 40, 0, 40) FakeMouse.Image = "rbxassetid://15381581138" FakeMouse.BackgroundTransparency = 1 FakeMouse.ZIndex = 10001 UIS.MouseIconEnabled = false game:GetService("RunService").RenderStepped:Connect(function() local pos = UIS:GetMouseLocation() FakeMouse.Position = UDim2.new(0, pos.X, 0, pos.Y) end) -- 4. NUEVO BOTÓN DE ROBLOX (VISIBLE) Y TÍTULOS -- Cambiamos el ImageButton por un TextButton para que se vea bien local RobloxBtn = Instance.new("TextButton", Screen) RobloxBtn.Size = UDim2.new(0, 120, 0, 40) RobloxBtn.Position = UDim2.new(0, 50, 0, 50) RobloxBtn.Text = "Roblox Player" RobloxBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) RobloxBtn.TextColor3 = Color3.new(1, 1, 1) RobloxBtn.Font = Enum.Font.SourceSansBold RobloxBtn.TextSize = 18 local TitleXP = Instance.new("TextLabel", RobloxBtn) TitleXP.Size = UDim2.new(1, 0, 0, 20) TitleXP.Position = UDim2.new(0, 0, 1, 5) TitleXP.Text = "Windows XP" TitleXP.TextColor3 = Color3.new(1, 1, 1) TitleXP.Font = Enum.Font.SourceSansBold TitleXP.BackgroundTransparency = 1 local Title7 = Instance.new("TextLabel", Screen) Title7.Size = UDim2.new(0, 300, 0, 50) Title7.Position = UDim2.new(0.5, -150, 0, 20) Title7.Text = "Windows 7 Professional" Title7.TextColor3 = Color3.new(1, 1, 1) Title7.TextSize = 25 Title7.Font = Enum.Font.SourceSansItalic Title7.BackgroundTransparency = 1 RobloxBtn.MouseButton1Click:Connect(function() Player:Kick("Touch the button of Below for play Roblox") end) -- 5. EL BOTÓN "TOUCH ME" local GameBtn = Instance.new("TextButton", Screen) GameBtn.Size = UDim2.new(0, 140, 0, 50) GameBtn.Position = UDim2.new(0.5, -70, 0.5, -25) GameBtn.Text = "TOUCH ME" GameBtn.TextSize = 20 GameBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) GameBtn.MouseButton1Click:Connect(function() GameBtn.Visible = false task.wait(3) GameBtn.Position = UDim2.new(math.random(0.2, 0.8), 0, math.random(0.2, 0.8), 0) GameBtn.Visible = true end)