Advertisement
Guest User

Script Roblox esp all player

a guest
Sep 13th, 2021
36,009
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1.  
  2. --- Tut
  3.  
  4. local esp_settings = { ---- table for esp settings
  5. textsize = 8,
  6. colour = 255,255,255
  7. }
  8.  
  9. local gui = Instance.new("BillboardGui")
  10. local esp = Instance.new("TextLabel",gui) ---- new instances to make the billboard gui and the textlabel
  11.  
  12.  
  13.  
  14. gui.Name = "Cracked esp"; ---- properties of the esp
  15. gui.ResetOnSpawn = false
  16. gui.AlwaysOnTop = true;
  17. gui.LightInfluence = 0;
  18. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  19. esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255);
  20. esp.Text = ""
  21. esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001);
  22. esp.BorderSizePixel = 4;
  23. esp.BorderColor3 = Color3.new(esp_settings.colour)
  24. esp.BorderSizePixel = 0
  25. esp.Font = "GothamSemibold"
  26. esp.TextSize = esp_settings.textsize
  27. esp.TextColor3 = Color3.fromRGB(esp_settings.colour) -- text colour
  28.  
  29. game:GetService("RunService").RenderStepped:Connect(function() ---- loops faster than a while loop :)
  30. for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  31. if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("Cracked esp")==nil then -- craeting checks for team check, local player etc
  32. esp.Text = "{"..v.Name.."}"
  33. gui:Clone().Parent = v.Character.Head
  34. end
  35. end
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement