Advertisement
1DollarH4ck

ESPFALSE

Apr 15th, 2023
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2.  
  3. -- Loop through all players and remove the ESP box for each one
  4. for i, player in ipairs(Players:GetPlayers()) do
  5. if player ~= Players.LocalPlayer and player.Character then
  6. local box = player.Character.HumanoidRootPart:FindFirstChildOfClass("BoxHandleAdornment")
  7. if box then
  8. box:Destroy()
  9. end
  10. end
  11. end
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement