local Players = game:GetService("Players") local Player = Players.LocalPlayer -- 1. Setup the "Scare" UI local sg = Instance.new("ScreenGui", Player:WaitForChild("PlayerGui")) sg.DisplayOrder = 999999 local f = Instance.new("Frame", sg) f.Size = UDim2.new(1,0,1,0) f.BackgroundColor3 = Color3.new(0,0,0) f.Visible = false local img = Instance.new("ImageLabel", f) img.Size = UDim2.new(1,0,1,0) img.Image = "rbxassetid://6079480292" img.BackgroundTransparency = 1 local s = Instance.new("Sound", workspace.CurrentCamera) s.SoundId = "rbxassetid://5410086218" s.Volume = 10 -- 2. The "Fake" Loading Sequence print("----------------------------") print("Delta V5.0 Premium Hub") print("Authenticating HWID...") task.wait(1.5) warn("CRITICAL: Executor Blacklisted by Roblox Anti-Cheat!") task.wait(0.5) -- 3. TRIGGER JUMPSCARE f.Visible = true s:Play() -- Shake effect spawn(function() for i = 1, 50 do f.Position = UDim2.new(0, math.random(-10,10), 0, math.random(-10,10)) task.wait(0.01) end end) task.wait(1.5) -- 4. THE KICK / CRASH (Choose your favorite method below) -- METHOD A: The "Scary Kick" Player:Kick("\n[ROBLOX SECURITY]\n\nYour account has been flagged for using 'Delta Executor'.\nEvidence has been sent to moderation.\n\nError Code: 0x8823 (Hardware ID Banned)") -- METHOD B: The "Soft Crash" (Lag them out) -- Uncomment the lines below to freeze their game instead of kicking -- while true do end