--BROUGHT TO YOU BY RobloxScripter.com!--
local Role = "Mafia" -- Vampire, Mafia
for i,v in pairs(game:GetService("Workspace").Game:GetChildren()) do
if v.Name == Role then
for i,b in pairs(v:GetDescendants()) do
if b.ClassName == "Part" then
local cham = Instance.new("BoxHandleAdornment", b)
cham.ZIndex = 10
cham.Adornee = b
cham.AlwaysOnTop = true
cham.Size = b.Size
cham.Transparency = 0
cham.Color3 = Color3.new(255,0,0)
cham.Name = "Cham"
end
end
end
end