The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
ALL GAMES ESP script pastebin roblox
By LINK GAME on 2024-09-18 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local color = BrickColor.new(50,0,250)
  2. local transparency = .8
  3.  
  4. local Players = game:GetService("Players")
  5. local function _ESP(c)
  6.   repeat wait() until c.PrimaryPart ~= nil
  7.   for i,p in pairs(c:GetChildren()) do
  8.     if p.ClassName == "Part" or p.ClassName == "MeshPart" then
  9.       if p:FindFirstChild("shit") then p.shit:Destroy() end
  10.       local a = Instance.new("BoxHandleAdornment",p)
  11.       a.Name = "shit"
  12.       a.Size = p.Size
  13.       a.Color = color
  14.       a.Transparency = transparency
  15.       a.AlwaysOnTop = true    
  16.       a.Visible = true    
  17.       a.Adornee = p
  18.       a.ZIndex = true    
  19.  
  20.     end
  21.   end
  22. end
  23. local function ESP()
  24.   for i,v in pairs(Players:GetChildren()) do
  25.     if v ~= game.Players.LocalPlayer then
  26.       if v.Character then
  27.         _ESP(v.Character)
  28.       end
  29.       v.CharacterAdded:Connect(function(chr)
  30.         _ESP(chr)
  31.       end)
  32.     end
  33.   end
  34.   Players.PlayerAdded:Connect(function(player)
  35.     player.CharacterAdded:Connect(function(chr)
  36.       _ESP(chr)
  37.     end)  
  38.   end)
  39. end
  40. ESP()