Advertisement
Magzz

IMVU CREDITScxzczx

Feb 18th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. --made by 6magz
  2. function CreateESPPart(BodyPart,color)
  3. local ESPPartparent = BodyPart
  4. local Box = Instance.new("BoxHandleAdornment")
  5. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  6. Box.Name = "ESPPart"
  7. Box.Adornee = ESPPartparent
  8. Box.Color3 = color
  9. Box.AlwaysOnTop = true
  10. Box.ZIndex = 5
  11. Box.Transparency = 0.8
  12. Box.Parent = BodyPart
  13. end
  14.  
  15. local zombs = workspace.Baddies:getChildren()
  16. for i=1,#zombs do
  17. local bodypart = zombs[i]:getChildren()
  18. for i=1,#bodypart do
  19. if bodypart[i].ClassName == "Part" then
  20. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  21. end
  22. end
  23. end
  24.  
  25. workspace.Baddies.ChildAdded:Connect(function(zomb)
  26. wait(1)
  27. local bodypart = zomb:getChildren()
  28. for i=1,#bodypart do
  29. if bodypart[i].ClassName == "Part" then
  30. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  31. end
  32. end
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement