Amazing update! I’ll certainly try that in the future
Wow, This open cloud engine API update will be useful to developers!
Pretty cool, I just need to understand how it work now… The google sheet thing will be super usefull.
Let’s goooo
It’s not the main feature of the Open Cloud API that was announced but it sure is a really nice one
Can’t wait for external code editor and external source control for projects
Alright, it seems a bit buggy, the example given on the doc page seems to work only one item and after he always give the following error “TypeError: Cannot read properties of undefined (reading ‘engineInstance’)”
Never mind find why :
“Live scripting session is active. Please wait for the session to end before making changes.”
Maybe you should precise that in the documentation
And one more thing, we can’t edit script inside package. Maybe say it somewhere too?
I am curious, what do you mean “it’ll be useful for live events”?
Great callout! We will add both of these to the documentation
This is really cool! I managed to make a system where it sync Promo Code from Google Sheets to Roblox ModuleScript!
Definitely have tons of use case for this feature!
This is awesome. I made a hacky workaround last year to accomplish something similar, but luckily haven’t launched that yet and now I can basically eliminate so many steps with this.
Thanks!
Does this mean anything for discord bots?
This is great! I can see million of possibilities using this.
Will there ever be a GetDescendants / Get All objects endpoint? As currently I have to loop through every single object then grab the child so can take very long time with a lot of instances
How do i get the instance id? I’m new to this thing so i do not know how to do stuff, can someone help?
You can find sample code in the reference doc: Engine Instance | Documentation - Roblox Creator Hub
The first time you use these methods, specify “root” for the instance ID. You will be able to receive the list of top-level children and their instance ids
We have that method! It’s called ListInstanceChildren: Instance | Documentation - Roblox Creator Hub
Unfortunately this does not retrieve descendants only direct children which was what I was doing already