FalqJoin Date: 2007-12-31 Post Count: 2521 |
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? |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
Add a debounce bro.
You have it perfectly ^_^ |
|
FalqJoin Date: 2007-12-31 Post Count: 2521 |
...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? |
|
|
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. |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
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. |
|
FalqJoin Date: 2007-12-31 Post Count: 2521 |
Does TouchEnded take an argument? |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
I'm not sure, you'll have to try
I never used TouchEnded before.
Actually I'm going to go learn about it now. |
|
FalqJoin Date: 2007-12-31 Post Count: 2521 |
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? |
|
128GBJoin Date: 2014-04-17 Post Count: 8056 |
The touch ended event goes crazy when people are standing on it because their legs keep moving |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
@128
Yea I'm actually making the script he's looking for right now and I won't even have to use TouchEnded. |
|
RelegatedJoin Date: 2011-10-24 Post Count: 9592 |
Use magnitude, it's better than touch ended. |
|
Stefan631Join Date: 2010-12-23 Post Count: 1350 |
magnitude!!!
|
|
FalqJoin Date: 2007-12-31 Post Count: 2521 |
my god didnt think of magnitutde lol
thanks |
|
RelegatedJoin Date: 2011-10-24 Post Count: 9592 |
No problem. |
|
Stefan631Join Date: 2010-12-23 Post Count: 1350 |
np doe |
|