Not a member of GistPad yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local camera = workspace.CurrentCamera
- -- SOUND
- local sound = Instance.new("Sound")
- sound.SoundId = "rbxassetid://9118823105"
- sound.Volume = 2
- sound.Looped = true
- sound.Parent = workspace
- sound:Play()
- -- GUI
- local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
- -- MATRIX BACKGROUND
- spawn(function()
- while true do
- local text = Instance.new("TextLabel")
- text.Size = UDim2.new(0,20,0,20)
- text.Position = UDim2.new(math.random(),0,0,0)
- text.Text = tostring(math.random(0,1))
- text.TextColor3 = Color3.fromRGB(170,0,255) -- LILA
- text.BackgroundTransparency = 1
- text.TextScaled = true
- text.Parent = gui
- spawn(function()
- for i = 1,50 do
- text.Position = text.Position + UDim2.new(0,0,0.02,0)
- wait(0.05)
- end
- text:Destroy()
- end)
- wait(0.05)
- end
- end)
- -- POPUP WINDOWS (LILA STYLE)
- spawn(function()
- while true do
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0,320,0,160)
- frame.Position = UDim2.new(math.random(),0,math.random(),0)
- frame.BackgroundColor3 = Color3.fromRGB(20,0,40)
- frame.BorderColor3 = Color3.fromRGB(170,0,255)
- frame.BorderSizePixel = 3
- frame.Parent = gui
- local text = Instance.new("TextLabel", frame)
- text.Size = UDim2.new(1,0,1,0)
- text.Text = "CRITICAL ERROR\nVirus Detected\nCool Studios is AWESOME"
- text.TextColor3 = Color3.fromRGB(200,100,255)
- text.BackgroundTransparency = 1
- text.TextScaled = true
- wait(0.3)
- end
- end)
- -- SCHNELLER TELEPORT
- spawn(function()
- while true do
- local hrp = character:FindFirstChild("HumanoidRootPart")
- if hrp then
- local offset = Vector3.new(
- math.random(-40,40),
- math.random(5,20),
- math.random(-40,40)
- )
- hrp.CFrame = hrp.CFrame + offset
- end
- wait(0.8) -- schneller
- end
- end)
- -- KAMERA DREHUNG
- spawn(function()
- while true do
- camera.CFrame = camera.CFrame * CFrame.Angles(0, 0, math.rad(3))
- wait(0.02)
- end
- end)
- -- NOTIFICATIONS
- spawn(function()
- while true do
- game.StarterGui:SetCore("SendNotification", {
- Title = "SYSTEM FAILURE",
- Text = "Matrix Breach Detected...",
- Duration = 2
- })
- wait(1)
- end
- end)
- -- AUFLÖSUNG NACH 10 SEKUNDEN
- wait(10)
- player:Kick("😂 You got pranked! 😂")
RAW Paste Data
Copied
