FORTUNE is a community that provides free models and scripts to the developers of the Roblox car community.
Tip
Check out our latest releases here
Most products can be found on the releases page
Legacy products are currently in the process of being added to the repository. If you do not see a release for a product on the releases page, please create an issue.
All releases can be found in the discord.
Contributions are always welcome. Currently, FORTUNE is only looking for updates/improvements to exisitng products. If you would like to see a new product, send a message in the discord!
Note
Both Rojo and non-Rojo workflows are acceptable, but for the sake of consistency pull requests must include a /src folder containing .luau files in their corresponding directories.
To accomodate for the large amount of products, each sub-directory under the root repository will represent a product in the following format:
root/
├── product1/
│ ├── latest_release.rbxm
│ ├── previous_releases/
│ │ ├── v1.0.rbxm
│ │ ├── v1.1.rbxm
│ │ ...
│ └── src/
│ ├── service1/
│ │ └── *.luau files
│ └── service2/
│ └── *.luau files
├── product2/
│── product3/
...
Subject to change if a better file structure is found.
Rojo allows developers to integrate industry tools like git and Visual Studio Code into their Roblox Studio workflow. It essentially allows you to edit Roblox experiences with an external IDE. In the context of this project, its main purpose is to allow for the use of version control (git).
- Rojo Setup (Detailed explanation on configuring Rojo)
- Download Visual Studio Code
- Rojo VSCode Extension
- Rojo Roblox Studio Plugin
Open the product directory in VSCode and open the command palette using Ctrl+Shift+P
Search and run Rojo: Open Menu
Install Rojo in the directory if it has not been installed already
Warning
If a new instance of Rojo has been installed, you must configure the default.project.json file which requires too much explanation for this note. Use other products such as VehicleSpawner as reference on how to configure the file.
An alternative solution exists here
If you run into problems or cannot figure it out, send a message in the discord.
Run Rojo (green arrow)
Open Roblox Studio and open the Rojo plugin
Click "connect"
Rojo is now synced and any edits made to the scripts in VSCode will apply to the scripts in studio!
Open/Create the product .rbxl file
Add any changes to the /src files
Note
All .luau files must exist in a folder named after its corresponding parent service (i.e. ReplicatedStorage, ServerScriptService, etc.)
If creating a new script, use the following file extensions
.client.luaufor local scripts.server.luaufor server scripts.luaufor module scripts