Advertisement
mr2meows

outline

Mar 16th, 2023 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. for i,v in pairs(workspace:GetDescendants()) do
  2. if v:IsA("Part") then
  3. local h = Instance.new("Highlight",v)
  4. h.FillTransparency = 1
  5. h.OutlineColor = Color3.fromRGB()
  6. end
  7. end
  8. function dumb(descendant)
  9. if descendant:IsA("Part") then
  10. local h = Instance.new("Highlight",descendant)
  11. h.FillTransparency = 1
  12. h.OutlineColor = Color3.fromRGB()
  13. end
  14. end
  15. workspace.DescendantAdded:Connect(dumb)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement