diff --git a/Core/Instance.cs b/Core/Instance.cs index 4bed088..fc06157 100644 --- a/Core/Instance.cs +++ b/Core/Instance.cs @@ -104,6 +104,7 @@ namespace Roblox { Property property = null; + var query = Properties.Where((prop) => prop.Name.ToLower() == propertyName.ToLower()); if (query.Count() > 0) property = query.First();