-- Tạo ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "OverlayWarning" screenGui.Parent = game:GetService("CoreGui") -- Chèn vào CoreGui để khó bị xóa bởi script thông thường screenGui.IgnoreGuiInset = true -- Tràn toàn màn hình (vượt qua thanh topbar) screenGui.DisplayOrder = 999999 -- Đảm bảo luôn nằm trên cùng -- Tạo Background trắng local background = Instance.new("Frame") background.Size = UDim2.new(1, 0, 1, 0) background.BackgroundColor3 = Color3.new(1, 1, 1) -- Màu trắng background.BorderSizePixel = 0 background.Parent = screenGui -- Tạo nhãn văn bản local label = Instance.new("TextLabel") label.Size = UDim2.new(0.8, 0, 0.2, 0) label.Position = UDim2.new(0.1, 0, 0.4, 0) label.BackgroundTransparency = 1 label.TextColor3 = Color3.new(0, 0, 0) -- Chữ đen label.TextScaled = true label.Font = Enum.Font.SourceSansBold label.Text = "follow cho kênh tiktok redkid, không sẽ nhìn con cak" label.Parent = background -- Khóa chuột và ngăn tương tác (tùy chọn) game:GetService("UserInputService").MouseIconEnabled = false -- Vòng lặp để ngăn chặn việc xóa script hoặc GUI (giữ màn hình trắng mãi mãi) spawn(function() while true do screenGui.Parent = game:GetService("CoreGui") background.Visible = true task.wait(0.1) end end)