local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Frame_2 = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextButton = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false print("If you see this, the script worked!") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(34, 34, 34) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.388539821, 0, 0.427821517, 0) Frame.Size = UDim2.new(0, 158, 0, 100) Frame_2.Parent = Frame Frame_2.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame_2.BorderSizePixel = 0 Frame_2.Size = UDim2.new(0, 158, 0, 25) TextLabel.Parent = Frame_2 TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.112792775, 0, -0.0151660154, 0) TextLabel.Size = UDim2.new(0, 121, 0, 26) TextLabel.Font = Enum.Font.Sarpanch TextLabel.Text = "Fake Lag By Backdoor" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 16.000 TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(205, 84, 75) TextButton.BorderColor3 = Color3.fromRGB(255, 255, 255) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.113924049, 0, 0.4, 0) TextButton.Size = UDim2.new(0, 121, 0, 37) TextButton.Font = Enum.Font.SourceSansItalic TextButton.Text = "Enable" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 20.000 local fakeLagEnabled = false local fakeLagThread local function toggleFakeLag() local lp = game:GetService("Players").LocalPlayer while fakeLagEnabled do task.wait() local character = lp.Character if character then local hrp = character:FindFirstChild("HumanoidRootPart") if hrp then hrp.Anchored = true task.wait(0.2) hrp.Anchored = false task.wait() end end end end TextButton.MouseButton1Click:Connect(function() fakeLagEnabled = not fakeLagEnabled TextButton.Text = fakeLagEnabled and "Enabled" or "Enable" if fakeLagEnabled then fakeLagThread = coroutine.create(toggleFakeLag) coroutine.resume(fakeLagThread) end end) Frame.Active = true Frame.Draggable = true