Advertisement
VenoxComeback

Virus on pc prank

Mar 8th, 2025
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. local MessageBox = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/NotificationGUI/main/source.lua"))()
  2.  
  3. -- Function to show the "Virus Detected" message multiple times at random positions
  4. local function showVirusNotifications()
  5. for i = 1, 250 do
  6. -- Random position for each notification
  7. local randomX = math.random(0, 100)
  8. local randomY = math.random(0, 100)
  9.  
  10. -- Show the message box at random positions
  11. MessageBox.Show({
  12. Position = UDim2.new(0.5 + randomX / 200, 0, 0.5 + randomY / 200, 0),
  13. Text = "Virus Detected!",
  14. Description = "A potential virus has been detected on your PC.\n\nPlease take necessary actions immediately!",
  15. MessageBoxIcon = "Error", -- Using Error icon for a more alarming effect
  16. MessageBoxButtons = "OKCancel", -- OKCancel buttons for confirmation
  17. Result = function(res)
  18. if (res == "OK") then
  19. MessageBox.Show({
  20. MessageBoxButtons = "OK",
  21. Description = "Please perform a factory reset on your PC.",
  22. Text = "Immediate Action Required!"
  23. })
  24. elseif (res == "Cancel") then
  25. MessageBox.Show({
  26. MessageBoxButtons = "OK",
  27. Description = "Please perform a factory reset on your PC.",
  28. Text = "Immediate Action Required!"
  29. })
  30. end
  31. end
  32. })
  33.  
  34. -- Small delay to stagger the opening of each notification (prevents freezing)
  35. wait(0.1)
  36. end
  37. end
  38.  
  39. -- Trigger the function to spam the notifications
  40. showVirusNotifications()
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement