local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local function highlightCharacters()
for _, object in pairs(workspace:GetChildren()) do
if object:IsA("Model") and (object.Name == "Male" or object.Name == "Model") then
local humanoid = object:FindFirstChildOfClass("Humanoid") or object:FindFirstChildWhichIsA("Humanoid", true)
if humanoid then
if not object:FindFirstChildOfClass("Highlight") then
local highlight = Instance.new("Highlight")
highlight.Adornee = object
highlight.Parent = object
highlight.FillColor = Color3.fromRGB(255, 0, 0)
highlight.FillTransparency = 0.99
highlight.OutlineColor = Color3.fromRGB(0, 0, 255)
highlight.OutlineTransparency = 0.2
end
end
end
end
end
while true do
highlightCharacters()
task.wait(1)
end
Comments
No comments yet
Be the first to share your thoughts!