roblox-studio-utils 0.3.3

Cross-platform library for interacting with Roblox Studio
Documentation
1
2
3
4
5
6
7
8
9
use roblox_studio_utils::RobloxStudioOpener;

pub fn main() -> Result<(), Box<dyn std::error::Error>> {
    // NOTE: A server must already be running for this to work

    RobloxStudioOpener::new().start_client().run()?;

    Ok(())
}