Mr_G_Curry

Name esp made by MrGabbe. On youtube

Nov 13th, 2021
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.07 KB | None | 0 0
  1. --Script made by Youtube: MrGabbe.    Discord: Mr_G_Curry #6982
  2. local esp_settings = {
  3.     textsize = 8,
  4.     colour = 167,200,100
  5. }
  6.  
  7. local gui = Instance.new("BillboardGui")
  8. local esp = Instance.new("TextLabel",gui)
  9.  
  10.  
  11. gui.Name = "ESP Sht";
  12. gui.ResetOnSpawn = false
  13. gui.AlwaysOnTop = true;
  14. gui.LightInfluence = 0;
  15. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  16. esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255);
  17. esp.Text = ""
  18. esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001);
  19. esp.BorderSizePixel = 4;
  20. esp.BorderColor3 = Color3.new(esp_settings.colour)
  21. esp.BorderSizePixel = 0
  22. esp.Font = "GothamSemibold"
  23. esp.TextSize = esp_settings.textsize
  24. esp.TextColor3 = Color3.fromRGB(esp_settings.colour)
  25.  
  26.  
  27.  
  28. game:GetService("RunService").RenderStepped:Connect(function()
  29.     for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  30.         if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("Esp Sht")==nil  then
  31.             esp.Text = "{"..v.Name.."}"
  32.             gui:Clone().Parent = v.Character.Head
  33.         end
  34.     end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment