Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Devil Hunter | Instant Kill - Devil Hunter Script | Free Roblox Script
Devil Hunter Devil Hunter

Devil Hunter | Instant Kill

Devil Hunter 54 views 1 month ago
Devil Hunter | Instant Kill - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: Blackout

Hold / Press V once you have done enough damage to get credit

Devil Hunter
Explore more scripts
View all Devil Hunter scripts

57 Lines 1,699 Bytes
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")

local plr = Players.LocalPlayer
local holdingV = false

local function INSTAKILLTHISNEBROID()
    local char = plr.Character
    if not char then return end
    
    local HRP = char:FindFirstChild("HumanoidRootPart")
    if not HRP then return end
    
    local entities = workspace:FindFirstChild("World") and workspace.World:FindFirstChild("Entities")
    if not entities then return end
    
    local closest = nil
    local DistFrM = math.huge
    
    for _, Mob in pairs(entities:GetChildren()) do
        if Mob:IsA("Model") and Mob ~= char then
            local MobRoot = Mob:FindFirstChild("HumanoidRootPart")
            local HumanoidN = Mob:FindFirstChild("Humanoid")
            
            if MobRoot and HumanoidN and isnetworkowner(MobRoot) then
                local dist = (HRP.Position - MobRoot.Position).Magnitude
                if dist < DistFrM then
                    DistFrM = dist
                    closest = HumanoidN
                end
            end
        end
    end
    
    if closest and closest.Health > 0 then
        closest.Health = 0
    end
end

UserInputService.InputBegan:Connect(function(INPETS, P)
    if P then return end
    if INPETS.KeyCode == Enum.KeyCode.V then
        holdingV = true
        INSTAKILLTHISNEBROID()
        
        while holdingV do
            INSTAKILLTHISNEBROID()
            task.wait(0.08)
        end
    end
end)

UserInputService.InputEnded:Connect(function(INPETS)
    if INPETS.KeyCode == Enum.KeyCode.V then
        holdingV = false
    end
end)

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Devil Hunter game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/devil-hunter-instant-kill/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other