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

Why is my touched script not working (how can I "reset" a script)?

Asked by 8 years ago
Edited 8 years ago

In my game, there is a part which represents a seed on top of a part which is meant to look like soil. If a player steps on the soil part, the seed will slowly become transparent. After that, the function is disconnected. This part of the script is successful. However, after that part of the script, I want another part (sprout) to emerge after a player touches the soil again.

This is what I've tried and it's not working:

01--When the seed dissolves in the soil after being touched
02seed = game.Workspace.Seed
03   yop = script.Parent.Touched:connect(function(x)
04    if x.Parent:FindFirstChild("Humanoid")then
05        yop:disconnect()
06        for i= 0,1,0.01  do
07        seed.Transparency = i
08 
09 
10 
11 
12    wait()
13 
14 
15 
View all 30 lines...

3 answers

Log in to vote
2
Answered by 8 years ago
Edited 8 years ago

One thing that I found to be a problem in your script is the :disconnect() which is obsolete, or no longer of use in Roblox. It will end up erroring if you decide to print it. So to replace that to make sure they cannot touch it multiple times at once and screw up the script just add a debounce. This will make sure that your script can work when the player touches the part. Now, I assume you only want two things to happen once they touch it twice, not any loops back to the beginning so I would wright the code like this:

01--When the seed dissolves in the soil after being touched
02-- Make sure this script is a descendant of the part
03 touch = true
04seed = script.Parent
05   seed.Touched:connect(function(x)
06    print("Touch")
07 
08    if touch == true then
09    if seed.Transparency == 1 then
10        x.Parent:FindFirstChild("Humanoid")
11        touch = false
12        for i = 1,0,-0.1 do
13            seed.Transparency = i
14            wait(1)
15            print("0")
View all 33 lines...

If this helped don't forget to accept the answer and possibly give a thumbs up! If you have any questions feel free to comment on the answer and I will be glad to help. Thanks for asking the question!

0
Ooh but when I do elseif, it does not work! crystalclay 70 — 8y
0
@crystalclay What is the error? yougottols1 420 — 8y
0
Elseif shows up underlined in red when I type it. crystalclay 70 — 8y
0
@crystalclay fixed it yougottols1 420 — 8y
View all comments (3 more)
0
This still did not work. crystalclay 70 — 8y
0
@crystalclay Ok now fixed it, i tested it and it works. But make sure this script is in the part. yougottols1 420 — 8y
0
Thank you for testing it! However, it is in the part, but it does not work and your script has a few mistakes. I noticed that you forgot to add "Sprout" into the part, and the part itself is supposed to be stepped on, not the seed . I'm sorry if I wasn't too descriptive crystalclay 70 — 8y
Ad
Log in to vote
1
Answered by 8 years ago

The best way to do this is to insert a "IntValue" into the player when they join, (which is game.Players.PlayerAdded) and that intvalue functions like this:

01script.Parent.Touched:connect(function(x)
02    if x.Parent:FindFirstChild("Humanoid")then
03        if game.Workspace.Seed.Transparency == 1 then
04            if x.Parent:FindFirstChild(IntValueWeTalkedAbout) then
05                if x.Parent:FindFirstChild(IntValueWeTalkedAbout).Value == 2 then
06                    for m = 1,0,-0.01 do
07                        game.Workspace.Sprout.Transparency = m
08                    end
09                    wait()
10                end
11            end
12        end
13    end
14end)

PLEASE note that this is just pseudo code and is just set to be an example. Im just trying to give you some ideas. If you have any further questions, just reply!

Log in to vote
-2
Answered by 8 years ago

script.Disabled = true wait() script.Disabled = false. Thats how you would 'reset' your script

Answer this question