of     1   

Falq
#141214430Tuesday, July 22, 2014 11:46 PM GMT

Player steps on pad. Player must be stepping on pad for 30 seconds and if player goes off it, variable x gets set to false. I know I need use the TouchEnded event, but that'll fire when it is a player who randomly walks over, not the player that I care about (which has his hasBomb value true). Where do I put the TouchEnded?
UncleTaz
#141214555Tuesday, July 22, 2014 11:47 PM GMT

Add a debounce bro. You have it perfectly ^_^
Falq
#141214667Tuesday, July 22, 2014 11:48 PM GMT

...I mean checking to see if TouchEnded is the same as the player where I am executing the code in Touched, how is a debounce supposed to help?
demonshadow553
#141214780Tuesday, July 22, 2014 11:49 PM GMT

the touch ended goes in the scrit's logic. E.G script.Parent.TouchEnded:connect(onTouched) but for the hasBomb value then you will use if.
UncleTaz
#141214806Tuesday, July 22, 2014 11:49 PM GMT

Because if the brick is touched. It will deactivate the button until the rest of the code is finish running. Thus ; If Player1 walks on the brick first, the code starts and if Player2 trys to step on the brick, it won't run for that player Because Player1 has already activated it.
Falq
#141215010Tuesday, July 22, 2014 11:51 PM GMT

Does TouchEnded take an argument?
UncleTaz
#141215106Tuesday, July 22, 2014 11:52 PM GMT

I'm not sure, you'll have to try I never used TouchEnded before. Actually I'm going to go learn about it now.
Falq
#141215381Tuesday, July 22, 2014 11:55 PM GMT

A really easy solution would be for me just to make a variable of the player's hit if TouchEnded takes an argument, not sure if it does and Wiki is down for me. Can anyone look?
128GB
#141215521Tuesday, July 22, 2014 11:57 PM GMT

The touch ended event goes crazy when people are standing on it because their legs keep moving
UncleTaz
#141215688Tuesday, July 22, 2014 11:58 PM GMT

@128 Yea I'm actually making the script he's looking for right now and I won't even have to use TouchEnded.
Relegated
#141215755Tuesday, July 22, 2014 11:59 PM GMT

Use magnitude, it's better than touch ended.
Stefan631
#141215819Wednesday, July 23, 2014 12:00 AM GMT

magnitude!!!
Falq
#141216105Wednesday, July 23, 2014 12:03 AM GMT

my god didnt think of magnitutde lol thanks
Relegated
#141216329Wednesday, July 23, 2014 12:05 AM GMT

No problem.
Stefan631
#141268419Wednesday, July 23, 2014 12:59 PM GMT

np doe

    of     1