local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local colorCorrection = Instance.new("ColorCorrectionEffect") colorCorrection.Name = "AntiCheatColor" colorCorrection.TintColor = Color3.fromRGB(180, 0, 0) colorCorrection.Contrast = 1.5 colorCorrection.Saturation = -1 colorCorrection.Brightness = -0.4 colorCorrection.Parent = Lighting local screenGui = Instance.new("ScreenGui") screenGui.Name = "AntiCheatEffect" screenGui.IgnoreGuiInset = true screenGui.ResetOnSpawn = false screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling screenGui.DisplayOrder = 999 screenGui.Parent = playerGui local warningText = Instance.new("TextLabel") warningText.Name = "WarningText" warningText.Size = UDim2.new(1, 0, 0.2, 0) warningText.Position = UDim2.new(0, 0, 0.4, 0) warningText.BackgroundTransparency = 1 warningText.Text = "WHY DID YOU CHEAT?" warningText.TextColor3 = Color3.fromRGB(255, 0, 0) warningText.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) warningText.TextStrokeTransparency = 0 warningText.Font = Enum.Font.GothamBlack warningText.TextScaled = true warningText.ZIndex = 50 warningText.Parent = screenGui task.spawn(function() while warningText and warningText.Parent do warningText.Rotation = math.random(-25, 25) task.wait(math.random(3, 12) / 100) if math.random(1, 8) == 1 then warningText.Rotation = math.random(-60, 60) task.wait(0.05) warningText.Rotation = math.random(-15, 15) end end end) for i = 1, 80 do local shape = Instance.new("Frame") shape.Name = "Shape"..i shape.BackgroundColor3 = Color3.fromRGB(math.random(180, 255), 0, 0) shape.BorderSizePixel = 0 shape.ZIndex = math.random(1, 40) local size = math.random(20, 120) shape.Size = UDim2.new(0, size, 0, size) shape.Position = UDim2.new(math.random(), 0, math.random(), 0) shape.Rotation = math.random(0, 360) shape.AnchorPoint = Vector2.new(0.5, 0.5) if i % 3 == 0 then local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(1, 0) corner.Parent = shape end if i % 4 == 0 then shape.Rotation = math.random(20, 70) end shape.Parent = screenGui task.spawn(function() while shape and shape.Parent do shape.Position = UDim2.new(math.random(), 0, math.random(), 0) shape.Rotation = math.random(-180, 180) local newSize = math.random(15, 160) shape.Size = UDim2.new(0, newSize, 0, newSize) if math.random(1, 5) == 1 then for _ = 1, math.random(2, 6) do local burstSize = math.random(10, 200) shape.Size = UDim2.new(0, burstSize, 0, burstSize) shape.Rotation = shape.Rotation + math.random(-50, 50) task.wait(0.025) end end task.wait(math.random(3, 14) / 100) end end) end task.delay(10, function() local black = Instance.new("Frame") black.Name = "BlackScreen" black.Size = UDim2.new(1, 0, 1, 0) black.BackgroundColor3 = Color3.new(0, 0, 0) black.BorderSizePixel = 0 black.ZIndex = 100 black.Parent = screenGui local figure = Instance.new("Frame") figure.Name = "WhiteFigure" figure.Size = UDim2.new(0, 160, 0, 340) figure.Position = UDim2.new(0.5, 0, 0.52, 0) figure.AnchorPoint = Vector2.new(0.5, 0.5) figure.BackgroundColor3 = Color3.new(1, 1, 1) figure.BorderSizePixel = 0 figure.ZIndex = 110 figure.Parent = screenGui local head = Instance.new("Frame") head.Size = UDim2.new(0, 100, 0, 100) head.Position = UDim2.new(0.5, 0, 0, -55) head.AnchorPoint = Vector2.new(0.5, 0.5) head.BackgroundColor3 = Color3.new(1, 1, 1) head.BorderSizePixel = 0 head.ZIndex = 111 head.Parent = figure local headCorner = Instance.new("UICorner") headCorner.CornerRadius = UDim.new(1, 0) headCorner.Parent = head local leftArm = Instance.new("Frame") leftArm.Size = UDim2.new(0, 35, 0, 140) leftArm.Position = UDim2.new(0, -45, 0.22, 0) leftArm.BackgroundColor3 = Color3.new(1, 1, 1) leftArm.BorderSizePixel = 0 leftArm.Rotation = 20 leftArm.ZIndex = 111 leftArm.Parent = figure local rightArm = Instance.new("Frame") rightArm.Size = UDim2.new(0, 35, 0, 140) rightArm.Position = UDim2.new(1, 10, 0.22, 0) rightArm.BackgroundColor3 = Color3.new(1, 1, 1) rightArm.BorderSizePixel = 0 rightArm.Rotation = -20 rightArm.ZIndex = 111 rightArm.Parent = figure local mouth = Instance.new("Frame") mouth.Name = "Mouth" mouth.Size = UDim2.new(0, 70, 0, 28) mouth.Position = UDim2.new(0.5, 0, 0.58, 0) mouth.AnchorPoint = Vector2.new(0.5, 0.5) mouth.BackgroundColor3 = Color3.new(0, 0, 0) mouth.BorderSizePixel = 0 mouth.ZIndex = 112 mouth.Parent = head local mouthCorner = Instance.new("UICorner") mouthCorner.CornerRadius = UDim.new(0, 12) mouthCorner.Parent = mouth for i = 1, 6 do local tooth = Instance.new("Frame") tooth.Size = UDim2.new(0, 9, 0, 14) tooth.Position = UDim2.new(0, 4 + (i-1)*11, 0, 2) tooth.BackgroundColor3 = Color3.new(1, 1, 1) tooth.BorderSizePixel = 0 tooth.ZIndex = 113 tooth.Parent = mouth end for i = 1, 5 do local tooth = Instance.new("Frame") tooth.Size = UDim2.new(0, 9, 0, 11) tooth.Position = UDim2.new(0, 9 + (i-1)*11, 1, -13) tooth.BackgroundColor3 = Color3.new(1, 1, 1) tooth.BorderSizePixel = 0 tooth.ZIndex = 113 tooth.Parent = mouth end task.spawn(function() while figure and figure.Parent do local tween = TweenService:Create(figure, TweenInfo.new(0.6, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), { Size = UDim2.new(0, 165, 0, 350) }) tween:Play() tween.Completed:Wait() local tween2 = TweenService:Create(figure, TweenInfo.new(0.6, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), { Size = UDim2.new(0, 155, 0, 330) }) tween2:Play() tween2.Completed:Wait() end end) task.wait(2.5) player:Kick("9999999") end)