Skip to main content

open_file/
open_file.rs

1use roblox_studio_utils::RobloxStudioOpener;
2
3pub fn main() -> Result<(), Box<dyn std::error::Error>> {
4    let file_path = "my_place_file.rbxl";
5
6    RobloxStudioOpener::new().open_file(file_path)?.run()?;
7
8    Ok(())
9}