US Trends

what does turning off archivable do in roblox

Turning off Archivable in Roblox means that instance can’t be cloned and usually won’t be saved/published with the place file. In simple terms, it makes an object act like a temporary or non-archiveable thing rather than part of the permanent game data.

What it affects

  • Cloning: :Clone() will not work on that instance if Archivable is false.
  • Saving/publishing: the object may not be included when the place is saved or published.
  • Temporary plugin objects: it’s mainly useful for plugin-made or temporary objects you do not want to keep.

What it does not do

  • It does not protect your model from exploiters or thieves.
  • It does not stop normal gameplay replication in a way that makes your assets “secret”.

Practical example

A plugin might create helper parts in Studio while you edit a map. If those helpers are set to Archivable = false, they won’t get saved into the final place file by accident.

TL;DR

Turning off Archivable = no cloning, and usually no saving/publishing for that instance. It’s mostly a Studio/tooling setting, not a security feature.