local Players = game:GetService("Players") local SoundService = game:GetService("SoundService") local player = Players.LocalPlayer ------------------------------------------------ -- SCREEN LABEL ------------------------------------------------ local screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 0.2, 0) label.Position = UDim2.new(0, 0, 0.4, 0) label.BackgroundColor3 = Color3.fromRGB(0, 0, 0) label.TextColor3 = Color3.fromRGB(255, 0, 0) label.TextScaled = true label.Font = Enum.Font.SourceSansBold label.Text = "GET CRASHED KID" label.Parent = screenGui ------------------------------------------------ -- WAIT 4 SECONDS ------------------------------------------------ task.wait(4) ------------------------------------------------ -- ALARM SOUND (PLAYS FIRST) ------------------------------------------------ local alarm = Instance.new("Sound") alarm.SoundId = "rbxassetid://138208615221407" alarm.Volume = 1 alarm.Parent = SoundService alarm:Play() -- Small delay so sound starts before effect task.wait(0.5) ------------------------------------------------ -- PIXEL EFFECT ------------------------------------------------ local PIXELS_PER_PART = 99999 local TOTAL_PARTS = 99999 for p = 1, TOTAL_PARTS do local container = Instance.new("Part") container.Size = Vector3.new(10,10,10) container.Position = Vector3.new(p * 20, 10, 0) container.Anchored = true container.CanCollide = false container.Transparency = 1 container.Parent = workspace for i = 1, PIXELS_PER_PART do local pixel = Instance.new("Part") pixel.Size = Vector3.new(0.2, 0.2, 0.2) pixel.Position = container.Position + Vector3.new( math.random(-5,5), math.random(-5,5), math.random(-5,5) ) pixel.Anchored = true pixel.CanCollide = false pixel.Color = Color3.fromRGB( math.random(0,255), math.random(0,255), math.random(0,255) ) pixel.Parent = workspace end end