What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Ultimate Random Night ESP/Animatronic Finder (AI)

Version / Update: v1.0.0
Download / Script Link
-- Services / folders
local workspace = game:GetService("Workspace")

local nameTagsFolder = workspace:WaitForChild("FolderNameTags")
local avatarsFolder = workspace:WaitForChild("FolderAvatars")

--------------------------------------------------
-- NAME TAGS: force Enabled = true
--------------------------------------------------
local function enableIfPossible(obj)
if obj and obj.Enabled ~= nil then
obj.Enabled = true
end
end

-- Existing
for _, obj in ipairs(nameTagsFolder:GetChildren()) do
enableIfPossible(obj)
end

-- Future
nameTagsFolder.ChildAdded:Connect(enableIfPossible)

--------------------------------------------------
-- AVATARS: add wall outline
--------------------------------------------------
local function addOutline(model)
if not model:IsA("Model") then return end
if model:FindFirstChild("WallOutline") then return end

local highlight = Instance.new("Highlight")
highlight.Name = "WallOutline"
highlight.Adornee = model
highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
highlight.FillTransparency = 1
highlight.OutlineTransparency = 0
highlight.OutlineColor = Color3.fromRGB(255, 255, 255)
highlight.Parent = model
end

-- Existing
for _, model in ipairs(avatarsFolder:GetChildren()) do
addOutline(model)
end

-- Future
avatarsFolder.ChildAdded:Connect(addOutline)
[ View More ]
2015a9f9-3d66-49c0-9cd2-b97013dae952.webp


I used ChatGPT for this, I am wayy to rusted to script allat. (This is not entirely AI as I did some quality edits and Dex navigation but my part is very small here)Tells you the Animatronic and the Player's name through walls along with ESP that works if the animatronic is visible, this is mostly for people who play Night Guard.
 
Back
Top