Advertisement
Guest User

Universal ESP

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