Guest

BANANA

Apr 11th, 2026
10
0
Never
Not a member of GistPad yet? Sign Up, it unlocks many cool features!
None 7.17 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:Wait()
  3. local camera = workspace.CurrentCamera
  4.  
  5. -- SOUND
  6. local sound = Instance.new("Sound")
  7. sound.SoundId = "rbxassetid://9118823105"
  8. sound.Volume = 2
  9. sound.Looped = true
  10. sound.Parent = workspace
  11. sound:Play()
  12.  
  13. -- GUI
  14. local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  15.  
  16. -- MATRIX BACKGROUND
  17. spawn(function()
  18. while true do
  19. local text = Instance.new("TextLabel")
  20. text.Size = UDim2.new(0,20,0,20)
  21. text.Position = UDim2.new(math.random(),0,0,0)
  22. text.Text = tostring(math.random(0,1))
  23. text.TextColor3 = Color3.fromRGB(170,0,255) -- LILA
  24. text.BackgroundTransparency = 1
  25. text.TextScaled = true
  26. text.Parent = gui
  27.  
  28. spawn(function()
  29. for i = 1,50 do
  30. text.Position = text.Position + UDim2.new(0,0,0.02,0)
  31. wait(0.05)
  32. end
  33. text:Destroy()
  34. end)
  35.  
  36. wait(0.05)
  37. end
  38. end)
  39.  
  40. -- POPUP WINDOWS (LILA STYLE)
  41. spawn(function()
  42. while true do
  43. local frame = Instance.new("Frame")
  44. frame.Size = UDim2.new(0,320,0,160)
  45. frame.Position = UDim2.new(math.random(),0,math.random(),0)
  46. frame.BackgroundColor3 = Color3.fromRGB(20,0,40)
  47. frame.BorderColor3 = Color3.fromRGB(170,0,255)
  48. frame.BorderSizePixel = 3
  49. frame.Parent = gui
  50.  
  51. local text = Instance.new("TextLabel", frame)
  52. text.Size = UDim2.new(1,0,1,0)
  53. text.Text = "CRITICAL ERROR\nVirus Detected\nCool Studios is AWESOME"
  54. text.TextColor3 = Color3.fromRGB(200,100,255)
  55. text.BackgroundTransparency = 1
  56. text.TextScaled = true
  57.  
  58. wait(0.3)
  59. end
  60. end)
  61.  
  62. -- SCHNELLER TELEPORT
  63. spawn(function()
  64. while true do
  65. local hrp = character:FindFirstChild("HumanoidRootPart")
  66. if hrp then
  67. local offset = Vector3.new(
  68. math.random(-40,40),
  69. math.random(5,20),
  70. math.random(-40,40)
  71. )
  72. hrp.CFrame = hrp.CFrame + offset
  73. end
  74. wait(0.8) -- schneller
  75. end
  76. end)
  77.  
  78. -- KAMERA DREHUNG
  79. spawn(function()
  80. while true do
  81. camera.CFrame = camera.CFrame * CFrame.Angles(0, 0, math.rad(3))
  82. wait(0.02)
  83. end
  84. end)
  85.  
  86. -- NOTIFICATIONS
  87. spawn(function()
  88. while true do
  89. game.StarterGui:SetCore("SendNotification", {
  90. Title = "SYSTEM FAILURE",
  91. Text = "Matrix Breach Detected...",
  92. Duration = 2
  93. })
  94. wait(1)
  95. end
  96. end)
  97.  
  98. -- AUFLÖSUNG NACH 10 SEKUNDEN
  99. wait(10)
  100. player:Kick("😂 You got pranked! 😂")
RAW Paste Data Copied