DevOfLua
(Luka)
February 14, 2019, 7:37pm
#1
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.
8 Likes
DevOfLua
(Luka)
February 14, 2019, 7:47pm
#3
And if new things will be added on roblox i need to update my website again?
3 Likes
Autterfly
(Autterfly)
February 14, 2019, 8:03pm
#5
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?)
22 Likes
DevOfLua
(Luka)
February 14, 2019, 8:16pm
#6
It is little bit hard to understand the the file content.
DevOfLua
(Luka)
February 15, 2019, 10:18am
#7
I finally made it. Thank you so so so much
3 Likes
Nootian
(Noot)
August 24, 2020, 12:16am
#8
Does this work on both studio and on server?
DevOfLua
(Luka)
August 24, 2020, 10:24am
#9
Yes, it does work in both server and studio.
I have made this tool for this task
New python project dropped
It takes the Roblox API dump and process it using pandas then convert it into lua tables to be used in lua scripts for reflection purposes like getting all the properties, events, callbacks, functions of roblox instances.
Open source of course, feel free to contribute!
This can be useful in roblox games for serialization/deserialization, inspection, reflection, etc…
Also for studio plugins like a custom Properties GUI
I may drop a video tutorial soon in my channe…