Advertisement
SkitExploits

Roblox - ESP

Mar 12th, 2021
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 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(1.75, 0, 1.75, 0);
  6. local frame = Instance.new("Frame", gui);
  7. frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
  8. frame.Size = UDim2.new(1, 0, 1, 0);
  9. frame.BorderSizePixel = 4;
  10. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  11. local gi = gui:Clone();
  12. local body = frame:Clone();
  13. body.Parent = gi;
  14. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  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.         gui:Clone().Parent = v.Character.Head;
  19.     end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement