--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local image = "10560525690" local sound = "72089843969979" local seconds = 8 local speed = 0.19 local start = 0 local volume = 10 local jumpscare = Instance.new("ScreenGui") jumpscare.ZIndexBehavior = Enum.ZIndexBehavior.Sibling jumpscare.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") --🧐🤨...localplayer? local label = Instance.new("ImageLabel", jumpscare) label.BackgroundColor3 = Color3.fromRGB(255, 255, 255) label.BorderColor3 = Color3.fromRGB(0, 0, 0) label.BorderSizePixel = 0 label.Size = UDim2.new(1, 0, 1, 0) label.Image = "rbxassetid://"..image local audio = Instance.new("Sound", game.SoundService) audio.SoundId = "rbxassetid://"..sound audio.PlaybackSpeed = speed audio.TimePosition = start audio.Volume = volume audio:Play() wait(seconds) jumpscare:Destroy()