-- Typical Colors 2 Hitbox Expander script, Chams, Bunny Hop - Made for solara skids, by FishhHvH -- For actually good TC2 scripts, join the discord local Players = cloneref(game:GetService("Players")) local LocalPlayer = Players.LocalPlayer local CoreGui = gethui() or cloneref(game:GetService('CoreGui')) local RepStorage = cloneref(game:GetService("ReplicatedStorage")) local Highlights = {} for i,Player in pairs(Players:GetPlayers()) do task.spawn(function() if Player == LocalPlayer then return end repeat task.wait() until Player.Character Highlights[Player.Name] = Instance.new("Highlight") Highlights[Player.Name].Adornee = Player.Character Highlights[Player.Name].Parent = CoreGui Highlights[Player.Name].Enabled = true Highlights[Player.Name].FillColor = Player.TeamColor.Color Highlights[Player.Name].OutlineColor = Color3.fromRGB(255, 255, 255) Highlights[Player.Name].FillTransparency = 0.4 Highlights[Player.Name].OutlineTransparency = 0.5 Player:GetPropertyChangedSignal("Team"):Connect(function() Highlights[Player.Name].FillColor = Player.TeamColor.Color end) end) end Players.PlayerAdded:Connect(function(Player) repeat task.wait() until Player.Character if Player == LocalPlayer then return end Highlights[Player.Name] = Instance.new("Highlight") Highlights[Player.Name].Adornee = Player.Character Highlights[Player.Name].Parent = CoreGui Highlights[Player.Name].Enabled = true Highlights[Player.Name].FillColor = Player.TeamColor.Color Highlights[Player.Name].OutlineColor = Color3.fromRGB(255, 255, 255) Highlights[Player.Name].FillTransparency = 0.4 Highlights[Player.Name].OutlineTransparency = 0.5 Player:GetPropertyChangedSignal("Team"):Connect(function() Highlights[Player.Name].FillColor = Player.TeamColor.Color end) end) Players.PlayerRemoving:Connect(function(Player) if Highlights[Player.Name] then Highlights[Player.Name]:Destroy() Highlights[Player.Name] = nil end end) game:GetService("StarterGui"):SetCore("SendNotification",{ Title = "TC2 ESP"; Text = "Made by FishhHvH"; Duration = 5; Button1 = "OK" })