Advertisement
oatmeal2009

fddssdfrgfd

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