Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I trigger another script through a script?

Asked by 7 years ago

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

2 answers

Log in to vote
0
Answered by 7 years ago
Edited 6 years ago

you can put it in a while loop your fireworks script. I show two methods.

01local function fireworks()
02    -- idk what you'd do here
03end
04 
05while true do
06    fireworks()
07    wait(1)
08end
09 
10--//OR\\--
11 
12-- from another script
13 
14while true do -- change to however long
15    Fireworks.Disabled = not Fireworks.Disabled -- assuming Fireworks is the name
16    wait(1)
17end
Ad
Log in to vote
1
Answered by
Nep_Ryker 131
7 years ago

You can just do something like this:

1script.Parent.DisabledScript.Disabled = false -- This will enable the script called "DisabledScript"

If you want to disable it, just set it to true.

0
Scripts have the option in their properties that is called "Disabled" if it's ticked, that means that the script is disabled and will not run in the game unless if an another script enables it. Nep_Ryker 131 — 7y

Answer this question