Stopping a "When I am clicked" script once it's called

I have two "When I am clicked" scripts for the same sprite, but they give different outcomes.

I've tried using a "forever" "stop script" block at the end of the first script, but it still gets called the second time.

How can I get the first script to run the first time, but never run again after that, even when the sprite is clicked for a second time?

untitled script pic

I added this to my program at the top, but it would still run the script involved. I even added a "stop script" block after the "...". It works if I run the second script by starting it manually, but the two scripts would kinda merge (ex. text merging when speaking)

you could use block variables, just create a custom block like,
untitled script pic (14)

right-click the define block and then click block variables.

If I'm understanding "at the top" correctly, I didn't make myself clear. That "..." was meant to represent the entire rest of your script! There shouldn't be anything underneath the IF.

if you don't like everything inside C blocks, you can do this:
[scratchblocks]
if (have i been run?) :: control
stop [this script v]
end
set [have i been run? v] to <true :: operators>
...
[/scratchblocks]

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.