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



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.  
  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(workspace.Players:GetChildren()) do
  25.         for j,k in pairs(v:GetChildren()) do
  26.            if k.ClassName == "Model" then
  27.                print('yes')
  28.                _ESP(k)
  29.             end
  30.         end
  31.         v.ChildAdded:Connect(function(instance)
  32.            _ESP(instance)
  33.         end)
  34.     end
  35.  end
  36. ESP()