Find the Needle Script – Simple Needle ESP [Open-Source]

Find the Needle Script – Simple Needle ESP [Open-Source]

Find the Needle 60 minutes ago
3 views
Find the Needle Script – Simple Needle ESP [Open-Source] Keyless
DeltaDev
Play Game Game Link

Description

Features

  • ESP
  • Open Source
  • No GUI
Features
Compatible Executors

Script

local espEnabled = true
local espObjects = {}
local targetObject = Workspace.Main.Needle
local function createHighlightESP(target)
    if not target then return end
    
    local highlight = Instance.new("Highlight")
    highlight.Adornee = target
    highlight.FillColor = Color3.fromRGB(255, 0, 0)
    highlight.OutlineColor = Color3.fromRGB(255, 255, 255)
    highlight.FillTransparency = 0.3
    highlight.OutlineTransparency = 0
    highlight.Parent = target
    
    espObjects[target] = {highlight = highlight}
end

createHighlightESP(targetObject)

Comments (0)

No comments yet. Be the first!