lemur
lemur copied to clipboard
Color3 doesn't check the argument's types
Fun fact, did you know Roblox doesn't either?
> print(Color3.new("Doge"))
0, 0, 0
> print(Color3.new("Doge", "is", "Funny"))
0, 0, 0
But Color3 calls tonumber on the arguments. Try Color3.new("0xFF").
Wow, that's kind of terrible. Totally comfortable making Lemur more strict in cases like this.
I think the tonumber functionality (is that even intentional?) should work, but other than that axe it.