local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local Workspace = game:GetService("Workspace") local localPlayer = Players.LocalPlayer if not localPlayer.Character then localPlayer.CharacterAdded:Wait() end local character = localPlayer.Character or localPlayer.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = 0 humanoid.JumpPower = 0 end local screenGui = Instance.new("ScreenGui") screenGui.Name = "WarningGui" screenGui.Parent = localPlayer.PlayerGui local messageLabel = Instance.new("TextLabel") messageLabel.Size = UDim2.new(1, 0, 1, 0) messageLabel.BackgroundTransparency = 1 messageLabel.Text = "" messageLabel.TextColor3 = Color3.new(1, 0, 0) messageLabel.Font = Enum.Font.Creepster messageLabel.TextSize = 42 messageLabel.TextStrokeTransparency = 0 messageLabel.TextStrokeColor3 = Color3.new(0, 1, 0) messageLabel.Parent = screenGui Lighting.ClockTime = 0 Lighting.Ambient = Color3.new(0.1, 0, 0) Lighting.FogEnd = 30 Lighting.FogColor = Color3.new(0.3, 0, 1) local neonPart = Instance.new("Part") neonPart.Size = Vector3.new(6, 12, 4) neonPart.Anchored = true neonPart.CanCollide = false neonPart.Transparency = 0.1 neonPart.Position = hrp.Position + (hrp.CFrame.LookVector * 8) neonPart.Material = Enum.Material.Neon neonPart.Color = Color3.new(0.8, 0, 0) local decal = Instance.new("Decal") decal.Face = Enum.NormalId.Front decal.Texture = "rbxassetid://10957095227" decal.Parent = neonPart local light = Instance.new("PointLight") light.Color = Color3.new(1, 0.65, 0) light.Range = 25 light.Brightness = 15 light.Shadows = true light.Parent = neonPart neonPart.Parent = Workspace neonPart.CFrame = CFrame.new(neonPart.Position, hrp.Position) local flashGui = Instance.new("ScreenGui") flashGui.Name = "FlashGui" flashGui.Parent = localPlayer.PlayerGui local flashFrame = Instance.new("Frame") flashFrame.Size = UDim2.new(0.6, 0, 0.2, 0) flashFrame.Position = UDim2.new(0.2, 0, 0.3, 0) flashFrame.BackgroundColor3 = Color3.new(0.1, 1, 0) flashFrame.BackgroundTransparency = 0.3 flashFrame.Parent = flashGui local flashLabel = Instance.new("TextLabel") flashLabel.Size = UDim2.new(1, 0, 0.8, 0) flashLabel.Position = UDim2.new(0.05, 0, 0.1, 0) flashLabel.BackgroundTransparency = 1 flashLabel.Text = "" flashLabel.TextColor3 = Color3.new(1, 0.3, 0.3) flashLabel.Font = Enum.Font.Creepster flashLabel.TextSize = 28 flashLabel.TextStrokeTransparency = 0 flashLabel.TextStrokeColor3 = Color3.new(1, 1, 1) flashLabel.TextWrapped = true flashLabel.Parent = flashFrame local messages = { "You have been caught exploiting!", "Your account will be banned soon.", "Goodbye." } local function showMessage(message) flashLabel.Text = "" for i = 1, #message do flashLabel.Text = string.sub(message, 1, i) task.wait(0.3) end task.wait(0.1) end task.wait(1) for _, msg in ipairs(messages) do showMessage(msg) task.wait(0.02) end screenGui:Destroy() flashGui:Destroy() task.wait(1) local kickMessage = "Exploit detected. You have been kicked from the game." localPlayer:Kick(kickMessage) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://1837635155" sound.Volume = 1 sound.Parent = Workspace sound:Play()