Advertisement
This is comment for paste
local FillColor = Color3.fromRGB(175,25,...
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hile wait() do
- pcall(function()
- for i,v in pairs(game.Players:GetChildren()) do
- if not v.Character.Head:FindFirstChild("ESP") then
- local BillboardGui = Instance.new("BillboardGui")
- local TextLabel = Instance.new("TextLabel")
- BillboardGui.Parent = v.Character.Head
- BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- BillboardGui.Active = true
- BillboardGui.Name = "ESP"
- BillboardGui.AlwaysOnTop = true
- BillboardGui.LightInfluence = 1.000
- BillboardGui.Size = UDim2.new(0, 200, 0, 50)
- BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
- TextLabel.Parent = BillboardGui
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
- TextLabel.BackgroundTransparency = 0
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.GothamBold
- TextLabel.Text = v.Name
- TextLabel.TextColor3 = Color3.fromRGB(25, 0, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextStrokeTransparency = 0.000
- TextLabel.TextWrapped = true
- end
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement