Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- -- Loop through all players and remove the ESP box for each one
- for i, player in ipairs(Players:GetPlayers()) do
- if player ~= Players.LocalPlayer and player.Character then
- local box = player.Character.HumanoidRootPart:FindFirstChildOfClass("BoxHandleAdornment")
- if box then
- box:Destroy()
- end
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement