Traitor Town scripts traitor esp

Uploaded On
Script Credit :- Stan#5370
Features

traitor esp

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

local overhead = true --set this to false if you have a bad pc (will not show names, but will be less laggy) local Workspace = game:GetService("Workspace") local Ragdolls = Workspace:WaitForChild("Ragdolls") local Players = game:GetService("Players") local CoreGui = game:GetService("CoreGui") function CreateESPPart(BodyPart, color) local ESPPartparent = BodyPart local PlayerName = BodyPart:FindFirstAncestorOfClass("Model").Name local Box = Instance.new("BoxHandleAdornment") Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1) Box.Name = PlayerName Box.Adornee = ESPPartparent Box.Color3 = color Box.AlwaysOnTop = true Box.ZIndex = 5 Box.Transparency = 0.7 Box.Parent = CoreGui if BodyPart.Name == "Head" and overhead then local Overhead = Instance.new("BillboardGui") Overhead.Name = PlayerName Overhead.StudsOffsetWorldSpace = Vector3.new(0,2.5,0) Overhead.Adornee = ESPPartparent Overhead.Size = UDim2.new(0,100,0,100) Overhead.AlwaysOnTop = true Overhead.Parent = CoreGui local TextLabel = Instance.new("TextLabel") TextLabel.Text = PlayerName TextLabel.Position = UDim2.new(0, 0, 0, -50) TextLabel.Size = UDim2.new(0, 100, 0, 100) TextLabel.Font = Enum.Font.SourceSansSemibold TextLabel.TextSize = 20 TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextStrokeTransparency = 0 TextLabel.BackgroundTransparency = 1 TextLabel.TextYAlignment = Enum.TextYAlignment.Bottom TextLabel.Parent = Overhead end end function loadCheck(chr) if chr:FindFirstChild("Humanoid") then local parts = chr:GetChildren() for i = 1, #parts do if parts[i]:IsA("BasePart") then CreateESPPart(parts[i],Color3.fromRGB(255,255,255)) end end end end local player = game.Players:GetChildren() for i = 1, #player do if player[i].Name ~= game.Players.LocalPlayer.Name then if workspace:FindFirstChild(player[i].Name) then loadCheck(player[i].Character) end spawn(function() player[i].CharacterAdded:Connect(function(character) character:WaitForChild("UpperTorso") loadCheck(character) end) end) end end local function removeEsp(name) local esp = CoreGui:GetChildren() for i,v in pairs(esp) do if name == v.Name then v:Destroy() end end end Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) task.wait(0.5) loadCheck(character) end) Players.PlayerRemoving:Connect(function(plr) removeEsp(plr.Name) end) end) local function SetColor(Instance) if Instance.Color3 == Color3.fromRGB(255, 165, 0) then Instance.Color3 = Color3.fromRGB(255, 0, 0) end if Instance.Color3 == Color3.fromRGB(255, 255, 255) then Instance.Color3 = Color3.fromRGB(255, 165, 0) end end local function SetTextColor(Instance) if Instance.TextColor3 == Color3.fromRGB(255, 165, 0) then Instance.TextColor3 = Color3.fromRGB(255, 0, 0) end if Instance.TextColor3 == Color3.fromRGB(255, 255, 255) then Instance.TextColor3 = Color3.fromRGB(255, 165, 0) end end Ragdolls.ChildAdded:Connect(function(body) local cd = body:WaitForChild("CorpseData") local tm = cd:WaitForChild("Team") local killer = cd:WaitForChild("KilledBy") removeEsp(body.Name) if tm.Value == "Innocent" then if workspace:findFirstChild(killer.Value) then local espparts = game.CoreGui:GetChildren() for i = 1, #espparts do if espparts[i].Name == tostring(killer.Value) and espparts[i]:IsA("BoxHandleAdornment") then SetColor(espparts[i]) end if espparts[i]:IsA("BillboardGui") and espparts[i].TextLabel.Text == tostring(killer.Value) then SetTextColor(espparts[i].TextLabel) end end end end if tm.Value == "Traitor" then local espparts = game.CoreGui:GetChildren() for i = 1, #espparts do if espparts[i].Name == tostring(killer.Value) and espparts[i]:IsA("BoxHandleAdornment") then espparts[i].Color3 = Color3.fromRGB(0,255,0) end if espparts[i]:IsA("BillboardGui") and espparts[i].TextLabel.Text == killer.Value then espparts[i].TextLabel.TextColor3 = Color3.fromRGB(0,255,0) end end end end)

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors