Advertisement
kyanopro

2d esp

Feb 25th, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. local gui = Instance.new("BillboardGui");
  2. gui.Name = "";
  3. gui.AlwaysOnTop = true;
  4. gui.LightInfluence = 0;
  5. gui.Size = UDim2.new(2, 0, 3, 0);
  6. local frame = Instance.new("Frame", gui);
  7. frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0);
  8. frame.BackgroundTransparency = 0.6
  9. frame.Size = UDim2.new(2, 0, 2, 0);
  10. frame.BorderSizePixel = 1;
  11. frame.BorderColor3 = Color3.fromRGB(255, 255, 255);
  12. local gi = gui:Clone();
  13. local body = frame:Clone();
  14. body.Parent = gi;
  15. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  16.  
  17. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  18. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  19. gui:Clone().Parent = v.Character.Head;
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement