Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local friends = {"DoseOfDopenessTV","Twiglillys"}
- local applyCooldown = .25
- local gui = Instance.new("BillboardGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- -- Properties
- gui.Name = "ESP"
- gui.Parent = game.Workspace
- gui.AlwaysOnTop = true
- gui.Size = UDim2.new(1, 0, 1, 0)
- gui.StudsOffset = Vector3.new(0, 2, 0)
- Frame.Parent = gui
- Frame.BackgroundColor3 = Color3.new(0.666667, 0, 0)
- Frame.BorderColor3 = Color3.new(0, 0, 0)
- Frame.BorderSizePixel = 4
- Frame.Size = UDim2.new(0.75, 0, 0.75, 0)
- TextLabel.Parent = Frame
- TextLabel.Text = ""
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextSize = 14
- TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
- TextLabel.TextStrokeTransparency = 0
- local function InsertESP()
- for _, v in pairs(game:GetService("Players"):GetPlayers()) do
- if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
- if v.Character:FindFirstChild("Head"):FindFirstChild("ESP") == nil then
- local clone = gui:Clone()
- clone.Parent = v.Character.Head;
- for ind,friend in pairs(friends) do
- if v.Name == friend then
- clone.Frame.BorderColor3 = Color3.fromRGB(255,255,255)
- end
- end
- wait(applyCooldown)
- end
- end
- end
- end
- InsertESP()
- while wait(5) do
- InsertESP()
- end
Add Comment
Please, Sign In to add comment