LeviTheOtaku

Framed ESP

Mar 2nd, 2019
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. while true do
  2. wait(0.1)
  3. local target = workspace.Events.GetTargetLocal:InvokeServer()
  4. local role = workspace.Events.GetRoleLocal:InvokeServer()
  5. if role == "Framed" then
  6. local bodyparts = target.Character:getChildren()
  7. for i=1,#bodyparts do
  8. if bodyparts[i].Parent.Name == game.Players.LocalPlayer.Name then
  9. else
  10. if bodyparts[i]:findFirstChild("ESP") then
  11. else
  12. if bodyparts[i].ClassName == "Part" then
  13. local boxha = Instance.new("BoxHandleAdornment",bodyparts[i])
  14. boxha.Adornee = bodyparts[i]
  15. boxha.Transparency = 0.5
  16. boxha.AlwaysOnTop = true
  17. boxha.Name = "ESP"
  18. boxha.Size = bodyparts[i].Size
  19. boxha.ZIndex = 1
  20. boxha.Color3 = Color3.fromRGB(255,0,0)
  21. end
  22. end
  23. end
  24. end
  25. end
  26. end
Add Comment
Please, Sign In to add comment