ADVERTISEMENTREMOVE ADS
AOT ESP
49,734 views

Script Preview
Description
This script adds red filled outlines to all models named "Titans" in the workspace. It uses a red fill with slight transparency and a red outline to make the Titans stand out. The script continuously updates to highlight new Titans and can be toggled on/off.
Features:Filled Outlines: Red fill with a red outline for clear visibility.
Dynamic Updates: Automatically highlights new Titans in the workspace.
Toggleable: Enable or disable highlighting with _G.HighlightTitans.
Features:
- ESP
Tested with
ADVERTISEMENTREMOVE ADS
45 Lines • 1.36 KiB
_G.HighlightTitans = true -- Toggle for Titan ESP
local highlightFolder = Instance.new("Folder")
highlightFolder.Name = "TitanHighlights"
highlightFolder.Parent = workspace
local function createHighlight(titan)
local highlight = Instance.new("Highlight")
highlight.Adornee = titan
highlight.FillColor = Color3.new(1, 0, 0) -- Red fill
highlight.OutlineColor = Color3.new(1, 0, 0) -- Red outline
highlight.FillTransparency = 0.3 -- Slightly transparent fill
highlight.Parent = highlightFolder
print("Created highlight for Titan:", titan.Name)
end
local function clearAll()
highlightFolder:ClearAllChildren()
print("Cleared all Titan highlights")
end
local function updateHighlights()
for _, titan in ipairs(workspace:GetChildren()) do
if titan:IsA("Model") and titan.Name == "Titans" and not titan:FindFirstChildWhichIsA("Highlight") then
createHighlight(titan)
end
end
end
local connection
if _G.HighlightTitans then
connection = game:GetService("RunService").RenderStepped:Connect(function()
updateHighlights()
end)
end
game:GetService("RunService").Heartbeat:Connect(function()
if not _G.HighlightTitans then
if connection then
connection:Disconnect()
connection = nil
end
clearAll()
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS





Comments