-- Anti-Lag if Settings.AntiLag then game:GetService("Lighting").FogEnd = 1000 game:GetService("Lighting").FogStart = 1000 for _, v in pairs(game:GetDescendants()) do if v:IsA("ParticleEmitter") or v:IsA("Smoke") or v:IsA("Fire") then v.Enabled = false end end updateStatus("Anti-Lag: ON") end
-- No Clip Movement RunService.RenderStepped:Connect(function() if Settings.NoClip and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CanCollide = false local moveDirection = LocalPlayer.Character.Humanoid.MoveDirection if moveDirection.Magnitude > 0 then LocalPlayer.Character.HumanoidRootPart.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame + moveDirection * 0.5 end end end)
This script is and works on the latest version of DOORS . If any feature breaks due to a game update, let me know and I’ll refresh it. UPDATED BEST DOORS---- Script
-- Create GUI local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ToggleButton = Instance.new("TextButton") local Status = Instance.new("TextLabel")
-- Figure Bypass (disable figure hearing/sight) if Settings.FigureBypass then local function bypassFigure() for _, figure in pairs(workspace:GetDescendants()) do if figure.Name == "Figure" and figure:FindFirstChild("FigureRagdoll") then local humanoid = figure:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = 0 end local hearing = figure:FindFirstChild("Hearing") if hearing then hearing:Destroy() end end end end spawn(function() while Settings.FigureBypass do bypassFigure() wait(1) end end) end -- Anti-Lag if Settings
-- Function to update status text local function updateStatus(msg) Status.Text = msg end
-- Settings (you can change these) local Settings = AutoBreach = true, FigureBypass = true, AutoCrucifix = true, NoKeyNeeded = true, InstantRevive = true, AutoWardrobe = true, AntiLag = true, NoClip = false, -- toggle with N key InfiniteStamina = true, AutoHideOnRush = true, HighlightHidingSpots = true FigureBypass = true
-- Instant Revive if Settings.InstantRevive then LocalPlayer.CharacterAdded:Connect(function(char) wait(0.1) local humanoid = char:WaitForChild("Humanoid") humanoid.BreakJointsOnDeath = false humanoid.Health = 100 updateStatus("Instant Revive: Respawned") end) end