I'm currently in the process of making an automatic show. It would be so much easier if I could trigger another script instead of repeating the same lines simply just for fireworks. Any tips? Thanks! -IPhoneDrew
you can put it in a while loop your fireworks script. I show two methods.
01 | local function fireworks() |
02 | -- idk what you'd do here |
03 | end |
04 |
05 | while true do |
06 | fireworks() |
07 | wait( 1 ) |
08 | end |
09 |
10 | --//OR\\-- |
11 |
12 | -- from another script |
13 |
14 | while true do -- change to however long |
15 | Fireworks.Disabled = not Fireworks.Disabled -- assuming Fireworks is the name |
16 | wait( 1 ) |
17 | end |
You can just do something like this:
1 | script.Parent.DisabledScript.Disabled = false -- This will enable the script called "DisabledScript" |
If you want to disable it, just set it to true.