Advertisement
Guest User

IMVU CREDITS12121zx

a guest
Feb 16th, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. -- made by 6magz (:
  2. local plr = game.Players.LocalPlayer
  3.  
  4. --You can edit these if you want
  5.  
  6. local color = Color3.fromRGB(127, 127, 61)
  7. local transparency = 80/100
  8.  
  9. while wait(1) do
  10. for _,v in pairs(game.Players:GetChildren()) do
  11. if v.Character and v.Character:FindFirstChild'Head' and v.Name ~= plr.Name then
  12. for _,v in pairs(v.Character:GetChildren()) do
  13. if (v:IsA'BasePart') and not v:FindFirstChild'BoxHandleAdornment' and v.Name ~= 'HumanoidRootPart' then
  14. local a = Instance.new'BoxHandleAdornment'
  15. a.AlwaysOnTop = true
  16. a.Adornee = v
  17. a.Color3 = color
  18. a.Transparency = transparency
  19. a.Parent = v
  20. a.Size = v.Size
  21. a.ZIndex = 10
  22. if v.Name == 'Head' then
  23. a.Size = Vector3.new(1,1,1)
  24. end
  25. end
  26. end
  27. end
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement