I accidentally used Color3.new (0, 255, 0) for a SelectionBox to get the green color (not the correct Color3.new (0, 1, 0)) and I got this beautiful glow effect:
local selBox = workspace.Part.SelectionBox
selBox.Color3 = Color3.new(0,255,0)
selBox.Adornee = selBox.Parent
This is an unintended consequence of the Color3 value going higher than 255. I don’t think it’s behavior you can rely on being consistent, so they wouldn’t document it.
Yes, he acknowledged this in the post. The thing is, he ended up giving the SelectionBox a Color of 0, 65025, 0 which is what caused the cool effect he mentioned in the post.