Using same script in multiple places

So I have a script that I am using in multiple places (under the same main place) and I am assuming I use package scripts to make changes to scripts and having them update, is there any other better alternatives or is this a fine method

1 Like

I guess it is an fine method? Though i actually make assets on what i would like to use later/in the future.

Packages are designed for this purpose, so that you can reuse scripts and other assets across the places in your game without having to update each place’s copy of the asset individually (e.g. you update one script and have to go into every game and make the same changes, whereas packages gets rid of that and you only need to update it once).

3 Likes