Hellmet Esp [based version.]
Hellmet Keyless
Hellmet Esp [based version.]
👤 alexriderr 👁 107 views ❤️ 0 likes ⏱ May 17, 2026
This script may occasionally glitch your game when activating it. Press **“P”** to toggle it on or off. If your character has a dash effect after execution, the script is working properly. It can also be used in Versus mode and is not visible in recordings if you disable it while recording. The game will appear normal without ESP, and you can enable the script again afterward.
✨ Features
Hellmet Esp, Keyless, toggle key "P" + You'll need to turn the graphics lower than 5 blocks sometimes, or it'll laggy your game too much while switching your esp enabled/disable.
📋 Script Code
--[[
    STABLE TOGGLEABLE ESP
    Fixes: Laser/Aim interference, Chat interference, and Performance lag.
    Toggle Key: "P"
]]

local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")

local toggleKey = Enum.KeyCode.P
local isEnabled = false

-- We use a folder to keep things organized and away from game-critical parts
local ESP_STORAGE = Instance.new("Folder")
ESP_STORAGE.Name = "Local_ESP_Storage"
ESP_STORAGE.Parent = Workspace

-- Highlight Settings
local highlightTemplate = Instance.new("Highlight")
highlightTemplate.Name = "ESP_Object"
highlightTemplate.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
highlightTemplate.FillTransparency = 0.55
highlightTemplate.OutlineTransparency = 0.25

local colorHostile = Color3.fromRGB(170, 85, 255)
local colorDefault = Color3.new(1, 1, 1)

-- Function to safely remove highlights
local function clearHighlights()
    ESP_STORAGE:ClearAllChildren()
end

-- Toggle Input (Safe Check)
UserInputService.InputBegan:Connect(function(input, gameProcessed)
    -- This prevents the script from breaking if you are typing in chat
    if gameProcessed then return end 
    
    if input.KeyCode == toggleKey then
        isEnabled = not isEnabled
        if not isEnabled then
            clearHighlights()
        end
    end
end)

-- Main Loop (Optimized)
task.spawn(function()
    while true do
        task.wait(1) -- Increased delay to 1 second to reduce CPU usage
        
        if isEnabled then
            local localPlayer = Players.LocalPlayer
            local localChar = localPlayer.Character
            
            for _, v in ipairs(Workspace:GetChildren()) do
                -- Ensure it is a character model and NOT us
                if v:IsA("Model") and v:FindFirstChild("Humanoid") and v ~= localChar then
                    
                    -- Check if this model already has a highlight in our storage
                    local existing = ESP_STORAGE:FindFirstChild(v.Name .. "_ESP")
                    
                    if not existing then
                        local hc = highlightTemplate:Clone()
                        hc.Name = v.Name .. "_ESP"
                        
                        -- CRITICAL FIX: We set the Adornee to the player, 
                        -- but parent the highlight to our EXTERNAL folder.
                        -- This prevents the highlight from "breaking" the character's parts/lasers.
                        hc.Adornee = v
                        hc.Parent = ESP_STORAGE
                        
                        -- Color Logic
                        if v.Name == "Hostile" or v.Name == "TaskForce" then
                            hc.OutlineColor = colorHostile
                            hc.FillColor = colorHostile
                        else
                            hc.OutlineColor = colorDefault
                            hc.FillColor = colorDefault
                        end
                    end
                end
            end
            
            -- Cleanup highlights for players who left or died
            for _, highlight in ipairs(ESP_STORAGE:GetChildren()) do
                local targetName = string.gsub(highlight.Name, "_ESP", "")
                if not Workspace:FindFirstChild(targetName) then
                    highlight:Destroy()
                end
            end
        end
    end
end)
🎮 Similar Scripts
💬 Comments (0)
Login to post a comment
No comments yet. Be the first!
Script Info
Game Hellmet
TypeKeyless
Authoralexriderr
Views107
Likes0
PublishedMay 17, 2026
🎮 Play Game on Roblox
🕐 Recent Scripts
Auto Parry Blade Ball OP Keyless
Auto Parry Blade Ball OP Keyless
Blade Ball • 👁 5
Keyless
Foxname GAG 2 Auto Steal Fruit Script OP (No Keys)
Foxname GAG 2 Auto Steal Fruit Script OP (No Keys)
Grow a Garden 2 • 👁 8
Keyless
Auto Kick Auto Train Walky Hub OP Keyless
Auto Kick Auto Train Walky Hub OP Keyless
Kick a Lucky Block • 👁 8
Keyless
Bike DownHill Infinite Train Script OP (Keyless)
Bike DownHill Infinite Train Script OP (Keyless)
Bike Downhill • 👁 9
Keyless
Fishing Chef Auto Fish script OP (No Keys)
Fishing Chef Auto Fish script OP (No Keys)
Fishing Chef • 👁 9
Keyless