Add more types to plugin

This commit is contained in:
Lucien Greathouse
2019-03-11 16:55:42 -07:00
parent 5b9facee00
commit 3b6238ff93
2 changed files with 10 additions and 3 deletions

View File

@@ -1,14 +1,20 @@
local primitiveTypes = {
String = true,
Bool = true,
Int32 = true,
Float32 = true,
Enum = true,
Float32 = true,
Float64 = true,
Int32 = true,
Int64 = true,
String = true,
}
local directConstructors = {
CFrame = CFrame.new,
Color3 = Color3.new,
Color3uint8 = Color3.fromRGB,
Rect = Rect.new,
UDim = UDim.new,
UDim2 = UDim2.new,
Vector2 = Vector2.new,
Vector2int16 = Vector2int16.new,
Vector3 = Vector3.new,