What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Roblox Fake Blue Screen Of Death Screen (BSOD)

Version / Update: v1.0.0
Download / Script Link
--//services
local players = game:GetService('Players')
local player = players.LocalPlayer
local gui = Instance.new('ScreenGui')

gui.IgnoreGuiInset = true
gui.ResetOnSpawn = false
gui.DisplayOrder = 9999
gui.Parent = player:WaitForChild('PlayerGui')

local windows = Instance.new('Frame')
windows.Size = UDim2.new(1, 0, 1, 0)
windows.BackgroundColor3 = Color3.fromRGB(0, 120, 215)
windows.BorderSizePixel = 0
windows.Parent = gui

local function sigma(props)
local monument = Instance.new('TextLabel')
monument.BackgroundTransparency = 1
monument.TextColor3 = Color3.fromRGB(255, 255, 255)
monument.Font = props.font or Enum.Font.GothamMedium
monument.Size = props.size
monument.Position = props.pos
monument.AnchorPoint = Vector2.new(0, 0)
monument.TextSize = props.ts or 20
monument.TextWrapped = props.wrap or false
monument.TextXAlignment = Enum.TextXAlignment.Left
monument.TextYAlignment = Enum.TextYAlignment.Top
monument.Text = props.text or ''
monument.Parent = windows
return monument
end
--//gui text
local smile = sigma({
size = UDim2.new(0, 220, 0, 180),
pos = UDim2.new(0.1, 0, 0.24, 0),
ts = 160,
font = Enum.Font.Code,
text = ':(',
})
local text = sigma({
size = UDim2.new(0.55, 0, 0, 160),
pos = UDim2.new(0.1, 0, 0.4, 0),
ts = 36,
wrap = true,
text = "Your PC ran into a problem and needs to restart. We're just collecting some error info, and then we'll restart for you.",
})
local percent = sigma({
size = UDim2.new(0.4, 0, 0, 55),
pos = UDim2.new(0.1, 0, 0.52, 0),
ts = 36,
text = '0% complete',
})
local link = sigma({
size = UDim2.new(0.55, 0, 0, 30),
pos = UDim2.new(0.1, 0, 0.62, 0),
ts = 17,
wrap = true,
text = 'For more information about this issue and possible fixes, visit https://www.windows.com/stopcode',
})
local info = sigma({
size = UDim2.new(0.4, 0, 0, 25),
pos = UDim2.new(0.1, 0, 0.67, 0),
ts = 17,
text = 'If you call a support person, give them this info:',
})
local code = sigma({
size = UDim2.new(0.4, 0, 0, 25),
pos = UDim2.new(0.1, 0, 0.71, 0),
ts = 17,
text = 'Stop code: CRITICAL_PROCESS_DIED',
})

--//loading
local p = 0
while p < 100 do
p = math.min(p + math.random(1, 5), 100)
percent.Text = p .. '% complete'
local t = p / 100
task.wait((0.15 + math.random() * 0.25) * (1 + 2 * (1 - math.sin(math.pi * t))))
end
task.wait(2)
gui:Destroy()
[ View More ]
f301b549-04d5-4816-be88-aa3aac712bed.webp


Troll your friends with this fake BSOD error!
 
Back
Top