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

What is the correct way of triggering code if a part is touched?

Asked by
Xyternal 247 Moderation Voter
3 years ago

Hello everyone, I was creating a little script where if someone touches the seat again, then the loop stops. So I added a little if statement that goes like this.

01local seat = script.Parent
02 
03seat.TouchEnded:Connect(function())
04local count = 0
05while count < 30 do
06if seat.Touched then
07break
08end
09if count == 30 then
10game.Workspace.Tank:Destroy()
11end
12count = count + 1
13wait(0.5)
14end
15 
16end)

So I think I have done a little weird mistake, like i'm doubting the line that says "if seat.Touched then". Please help me with my script. Thanks!

3 answers

Log in to vote
1
Answered by 3 years ago

The issue here is the wrapping of the function. An arguments list ends when a ) is added. If you look at the line where the function gets connected in the event's :Connect function, you'll see the arguments list end before the first line of the code you want to wrap. Everything else is fine, you simply need to remove the ) of the :Connect.

0
Ohh, lemme try that out. Xyternal 247 — 3y
0
Are you sure thats it? Xyternal 247 — 3y
0
Sure as sure can be. Is it not working? deeskaalstickman649 475 — 3y
0
haven't tried it yet, but something i know is that whenever i get someting wrong, it has a deeper problem. I'll try in a bit Xyternal 247 — 3y
View all comments (8 more)
0
i just want to know if YOU know what im trying to do Xyternal 247 — 3y
0
Like, can Touched me used for a control seat? Xyternal 247 — 3y
0
Uh, I'm unsure of what you mean. But I'm still certian it will work. deeskaalstickman649 475 — 3y
0
be* Xyternal 247 — 3y
0
ok, ill try Xyternal 247 — 3y
0
Your answer didn't work. When I waited for 15 seconds after touching and getting off the seat, then it didn't disappear Xyternal 247 — 3y
0
Er, I was simply trying to fix the error here, not fix the bug. Sorry for the misconception. deeskaalstickman649 475 — 3y
0
oh ok sorry Xyternal 247 — 3y
Ad
Log in to vote
1
Answered by 3 years ago

Hey i think this will be the answer to your question. Also your code looks messy but you can tidy them up by doing like i did.

01local seat = script.Parent
02local Break = false
03 
04seat.Touched:Connect(function() -- Sets up an event that sets break to true
05    Break = true
06end
07 
08seat.TouchEnded:Connect(function())
09 
10    local count = 0
11    Break = false -- Resets the value when you leave the seat
12 
13    while count < 30 do
14 
15        if Break then -- breaks from the loop if Break = true
View all 28 lines...
0
Did you test it out? What the code should do, is that if the player sat on the seat, and then got of it, and doesn't get back on in 30 seconds, then the tank should get despawned. But if the player touches the seat just in time, then it should break from the loop, and prevent the tank from getting despawned. Xyternal 247 — 3y
Log in to vote
1
Answered by
Xapelize 2658 Moderation Voter Community Moderator
3 years ago
01local Seat = script.Parent
02local Count = 30
03local IsTouching = false
04 
05seat.Touched:Connect(function()
06    Count = 30 -- Reset time
07    IsTouching = true
08end)
09 
10seat.TouchEnded:Connect(function()
11    IsTouching = false -- Make it false
12 
13    while wait(1) do -- Every 1 second
14        if IsTouching == false then -- Detect if IsTouching == false, if not it obviously does not pass the statement
15            Count -= 1 -- Minus one
View all 24 lines...
0
Thanks man Xyternal 247 — 3y

Answer this question