-- i love spicebush i hate DONGBAEK local uis = game:GetService("UserInputService") local rs = game:GetService("ReplicatedStorage") local player = game.Players.LocalPlayer local remote = rs:WaitForChild("Net"):WaitForChild("Character"):WaitForChild("Combat") local existing = player.PlayerGui:FindFirstChild("uithatdoesntdoanything") if existing then existing:Destroy() end local vergiliusmove = rs.src.Others.Vergilius["The Red Gaze (Custom)"].Moves.Base.M1.Combos["2"] local howfastdoesthishitboxgo = 0 local scriptworkingquestionmark = true local elooping = false local loopconnection local gui = Instance.new("ScreenGui") gui.Name = "uithatdoesntdoanything" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local exterminategui = Instance.new("TextButton") exterminategui.Size = UDim2.new(0, 160, 0, 30) exterminategui.Position = UDim2.new(1, -170, 1, -40) exterminategui.AnchorPoint = Vector2.new(0, 1) exterminategui.BackgroundColor3 = Color3.fromRGB(150, 40, 40) exterminategui.Text = "complete and total extermination" exterminategui.TextColor3 = Color3.fromRGB(147, 0, 219) exterminategui.TextScaled = true exterminategui.Font = Enum.Font.SourceSansBold exterminategui.Parent = gui local function starteloop() if loopconnection then return end elooping = true loopconnection = task.spawn(function() while elooping and scriptworkingquestionmark do local char = player.Character if char then local hum = char:FindFirstChild("Humanoid") local hrp = char:FindFirstChild("HumanoidRootPart") if hum and hrp then remote:FireServer({ Module = vergiliusmove, Humanoid = hum, Attempt = "M1", HRP = hrp, Char = char }) end end task.wait(howfastdoesthishitboxgo) end end) end local function stopeloop() elooping = false if loopconnection then task.cancel(loopconnection) loopconnection = nil end end uis.InputBegan:Connect(function(input, gpe) if not scriptworkingquestionmark or gpe then return end if input.KeyCode == Enum.KeyCode.E then if elooping then stopeloop() else starteloop() end end end) exterminategui.MouseButton1Click:Connect(function() scriptworkingquestionmark = false stopeloop() gui:Destroy() end)