Get properties of an object

Does anyone know a website where I can find properties of an object?

I am making custom Explorer and Properties menu for Roblox with the plugin but I cannot find any way to get properties,I have looked at a lot website for example

https://anaminus.github.io/rbx/raw/api/latest.txt
https://anaminus.github.io/rbx/json/api/latest.json

But they are outdated they dont have ViewportFrame.

7 Likes

And if new things will be added on roblox i need to update my website again?

2 Likes

You can use the following endpoint/link with HttpService to retrieve the latest api dump version.

http://setup.roblox.com/versionQTStudio

You can then use this version to request the appropriate JSON api dump from this other link, but replace VERSION with the retrieved string.

http://setup.roblox.com/VERSION-API-Dump.json

The dump should contain everything from property names and types to (I believe) methods.

(They’re Roblox subdomains so you might need a proxy?)

20 Likes

It is little bit hard to understand the the file content.

image I finally made it. Thank you so so so much :heart:

3 Likes

Does this work on both studio and on server?

Yes, it does work in both server and studio.