Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local LocalPlayer = game.Players.LocalPlayer
- local PlayersList = game.Players
- function HighlightPlayer(Player)
- local Highlighter = Instance.new("Highlight", Player.Character)
- Highlighter.FillTransparency = 0.2
- Highlighter.FillColor = Color3.new(1, 1, 1)
- local Tag = Instance.new("BillboardGui", Player.Character.Head)
- Tag.Name = "tag"
- Tag.ResetOnSpawn = false
- Tag.Size = UDim2.new(0, 200, 0, 19)
- Tag.StudsOffset = Vector3.new(0, 1.9, 0)
- Tag.AlwaysOnTop = true
- local Text = Instance.new("TextLabel", Tag)
- Text.Name = "Text"
- Text.BackgroundColor3 = Color3.new(1, 1, 1)
- Text.BackgroundTransparency = 1
- Text.BorderSizePixel = 0
- Text.Size = UDim2.new(0, 200, 0, 19)
- Text.Font = Enum.Font.SourceSansBold
- Text.Text = Player.DisplayName.." | "..Player.Name
- Text.TextColor3 = Color3.new(1, 1, 1)
- Text.TextScaled = true
- Text.TextStrokeTransparency = 0.4
- end
- function TrackAll()
- task.spawn(function()
- while wait(1) do
- for _, Player in pairs(game.Players:GetPlayers()) do
- if Player ~= LocalPlayer then
- if Player.Character and (not Player.Character:FindFirstChild("Highlight")) then
- HighlightPlayer(Player)
- end
- end
- end
- end
- end)
- end
- TrackAll()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement