-- ========================================== -- cZergui v2.8 leaked L cZerkidd -- ========================================== local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local TextChatService = game:GetService("TextChatService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local oldGui = PlayerGui:FindFirstChild("cZergui key System Verify") if oldGui then oldGui:Destroy() end -- ========================================== -- Key System -- ========================================== local screenGui = Instance.new("ScreenGui") screenGui.Name = "cZergui key System Verify" screenGui.IgnoreGuiInset = true screenGui.ResetOnSpawn = false screenGui.Parent = PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 320, 0, 160) frame.Position = UDim2.new(0.5, -160, 0.5, -80) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local title = Instance.new("TextLabel") title.Text = "cZergui verify key (password:team_cZerkidd)" title.Size = UDim2.new(1, 0, 0, 35) title.BackgroundColor3 = Color3.fromRGB(45, 45, 45) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 13 title.Font = Enum.Font.SourceSansBold title.Parent = frame local titleCorner = Instance.new("UICorner") titleCorner.CornerRadius = UDim.new(0, 8) titleCorner.Parent = title local inputBox = Instance.new("TextBox") inputBox.PlaceholderText = "Enter key here..." inputBox.Text = "" inputBox.Size = UDim2.new(0.85, 0, 0, 40) inputBox.Position = UDim2.new(0.075, 0, 0.35, 0) inputBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20) inputBox.TextColor3 = Color3.fromRGB(255, 255, 255) inputBox.PlaceholderColor3 = Color3.fromRGB(100, 100, 100) inputBox.TextSize = 14 inputBox.Parent = frame local inputCorner = Instance.new("UICorner") inputCorner.CornerRadius = UDim.new(0, 6) inputCorner.Parent = inputBox local submitBtn = Instance.new("TextButton") submitBtn.Text = "Verify Key" submitBtn.Size = UDim2.new(0.85, 0, 0, 35) submitBtn.Position = UDim2.new(0.075, 0, 0.72, 0) submitBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) submitBtn.TextColor3 = Color3.fromRGB(255, 255, 255) submitBtn.TextSize = 14 submitBtn.Font = Enum.Font.SourceSansBold submitBtn.Parent = frame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 6) btnCorner.Parent = submitBtn -- ========================================== -- Main Menu -- ========================================== local function triggerChaos() screenGui:Destroy() local chaosGui = Instance.new("ScreenGui") chaosGui.Name = "AntiSkidChaos" chaosGui.IgnoreGuiInset = true chaosGui.ResetOnSpawn = false chaosGui.Parent = PlayerGui local bg = Instance.new("Frame") bg.Size = UDim2.new(1, 0, 1, 0) bg.BackgroundColor3 = Color3.fromRGB(0, 0, 0) bg.Parent = chaosGui task.spawn(function() while chaosGui.Parent do bg.BackgroundColor3 = Color3.fromRGB(math.random(80, 200), 0, 0) task.wait(0.05) end end) local img = Instance.new("ImageLabel") img.Size = UDim2.new(0, 350, 0, 350) img.Position = UDim2.new(0.5, -175, 0.5, -175) img.Image = "rbxassetid://6182991646" img.BackgroundTransparency = 1 img.Parent = chaosGui task.spawn(function() while chaosGui.Parent do local randomPos = UDim2.new(math.random(0, 750)/1000, 0, math.random(0, 750)/1000, 0) local tween = TweenService:Create(img, TweenInfo.new(0.15, Enum.EasingStyle.Linear), {Position = randomPos}) tween:Play() task.wait(0.15) end end) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://139488665764275" sound.PlaybackSpeed = 0.6 sound.Volume = 10 sound.Looped = true sound.Parent = chaosGui sound:Play() local function forceChat(message) pcall(function() local channels = TextChatService:FindFirstChild("TextChannels") if channels and channels:FindFirstChild("RBXGeneral") then channels.RBXGeneral:SendAsync(message) return end end) pcall(function() local chatEvents = ReplicatedStorage:FindFirstChild("DefaultChatSystemChatEvents") if chatEvents then local sayMessage = chatEvents:FindFirstChild("SayMessageRequest") if sayMessage then sayMessage:FireServer(message, "All") end end end) end task.spawn(function() task.wait(1.0) local messages = { "i'm skid", "i'm delta kid", "I was deceived by the antiskid Script by STR", "W STR" } for _, msg in ipairs(messages) do forceChat(msg) task.wait(1.5) end end) end -- ========================================== -- Click -- ========================================== submitBtn.MouseButton1Click:Connect(function() if inputBox.Text == "team_cZerkidd" then triggerChaos() else title.Text = "Invalid Key! (password: team_cZerkidd)" title.BackgroundColor3 = Color3.fromRGB(150, 0, 0) inputBox.Text = "" end end)