Advertisement
choco99

esp script roblox 20 sec refresh

Jan 11th, 2022 (edited)
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. while true do
  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(255, 255, 255);
  9.     frame.Size = UDim2.new(1, 0, 1, 0);
  10.     frame.BorderSizePixel = 4;
  11.     frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  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
  22.     wait(20)
  23. end
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement