if not game:IsLoaded() then game.Loaded:Wait() end local function startScript() local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") if playerGui:FindFirstChild("CustomImageSpawnerGui") then playerGui.CustomImageSpawnerGui:Destroy() end local screenGui = Instance.new("ScreenGui") screenGui.Name = "CustomImageSpawnerGui" screenGui.ResetOnSpawn = false screenGui.DisplayOrder = 999999 screenGui.Parent = playerGui local decalList = { "rbxassetid://134706844620605", "rbxassetid://94852636093988" } local function playSound() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://3200130016" sound.Volume = 1 sound.Looped = true sound.Parent = workspace sound:Play() end -- Hàm tạo ảnh với vị trí ngẫu nhiên thực sự local function spawnImage(isFirst) math.randomseed(tick() + math.random(1, 100000)) -- Reset hạt giống ngẫu nhiên local img = Instance.new("ImageLabel") img.Size = UDim2.new(0, math.random(250, 450), 0, math.random(250, 450)) -- Dùng Scale rộng hơn để đảm bảo rải khắp màn hình img.Position = UDim2.new(math.random(0, 80)/100, 0, math.random(0, 80)/100, 0) img.BackgroundTransparency = 1 img.ScaleType = Enum.ScaleType.Fit img.ZIndex = math.random(1, 1000) img.Parent = screenGui return img end -- Hình đầu tiên local firstImage = spawnImage(true) playSound() -- Loop tuần tự cho tất cả ảnh local function startLoop(img, startIndex) task.spawn(function() local idx = startIndex while img and img.Parent do img.Image = decalList[idx] idx = (idx % #decalList) + 1 task.wait(0.5) end end) end startLoop(firstImage, 1) -- Loop sinh ảnh mới mỗi giây task.spawn(function() local spawnCount = 2 while screenGui and screenGui.Parent do task.wait(1) local newImg = spawnImage(false) startLoop(newImg, spawnCount) spawnCount = (spawnCount % #decalList) + 1 playSound() end end) end -- Tự động queue cho server mới if queue_on_teleport then queue_on_teleport([[ -- (Code tương tự như trên để chạy lại ở server mới) loadstring(game:HttpGet("https://raw.githubusercontent.com/tên_file_của_bạn_nếu_có"))() -- Hoặc nếu không dùng link, bạn copy lại toàn bộ khối hàm startScript() vào đây ]]) end startScript() print("you a loser")