#Check if any value is equal to Vector3
1 messages · Page 1 of 1 (latest)
const value = player.getDynamicProperty('name') as Vector3;
1 messages · Page 1 of 1 (latest)
I'm trying to let typescript know that the value I'm getting from Player.getDynamicProperty(...) is in fact a Vector3 but with Dynamic Properties able to be string | number | Vector3 | bool | undefined and the new change where Vector3 isn't a value anymore I'm struggling
const value = player.getDynamicProperty('name') as Vector3;