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>> {
    let file_path = "my_place_file.rbxl";

    RobloxStudioOpener::new().open_file(file_path)?.run()?;

    Ok(())
}