Skip to content

Latest commit

Β 

History

History
36 lines (21 loc) Β· 1.04 KB

File metadata and controls

36 lines (21 loc) Β· 1.04 KB

Altair - src/preload Folder

This folder is part of the ReplicatedFirst service and is used to manage preloaded assets or modules that need to be available before the game fully loads on the client.


πŸ“¦ Location

ReplicatedFirst


πŸ“„ Purpose

The src/preload folder is used to:

  • Contain files that need to be preloaded (e.g., UI, modules, or assets).
  • Prevent accidental deletion of existing instances in ReplicatedFirst during development.
  • Allow developers to organize preload content cleanly without polluting the root of ReplicatedFirst.

🧠 Behavior in Studio

Unlike the root of ReplicatedFirst, files placed inside src/preload:

  • Will not be automatically deleted or replaced by Rojo during synchronization.
  • Can be safely modified or used for testing in Studio without affecting production Rojo sync.

βœ… Use Cases

  • Preloading UI screens or loading animations.
  • Holding modules/scripts needed early in the client lifecycle.
  • Caching sound or image assets before a full game load.