I want to be able to get a list of every typeof()
E.g
Vector3
CFrame
String
Enums
UDim
etc…
Anyone know how?
I want to be able to get a list of every typeof()
E.g
Vector3
CFrame
String
Enums
UDim
etc…
Anyone know how?
This website on the wiki lists them all: Roblox Engine Data Types | Documentation - Roblox Creator Hub
Programmatically? You can’t as far as I know, however @DatabaseReplace is correct with that page - that is the page with all of Roblox’s datatypes.
that page does not show all because there is no String.
That is a list of DataTypes, they are different
can u show me where to get all typeofs then, i was wonderingsame thing as OP
That link is for Roblox data types. The Lua ones are string, number, bool, table, function, coroutine/thread, and userdata. Nil is also technically a data type in vanilla Lua.
I don’t think there’s currently a way to get all typeof’s from a script.
If you want here’s a table of the the types from that page (note: very long table)
{"Axes", "BrickColor", "CatalogSearchParams", "CFrame", "Color3", "ColorSequence", "ColorSequenceKeypoint", "DateTime", "DockWidgetPluginGuiInfo", "Enum", "EnumItem", "Enums", "Faces", "Instance", "NumberRange", "NumberSequence", "NumberSequenceKeypoint", "PathWaypoint", "PhysicalProperties", "Random", "Ray", "RaycastParams", "RaycastResult", "RBXScriptConnection", "RBXScriptSignal", "Rect", "Region3", "Region3int16", "TweenInfo", "UDim", "UDim2", "Vector2", "Vector2int16", "Vector3", "Vector3int16"}