Advertisement
Guest User

ESP

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