#Help

6 messages · Page 1 of 1 (latest)

dense aspen
#

How do i make it so when "nope.Enabled" is false, you cannot make an input of shift anymore for 1 second?

long minnow
#

i would suggest implementing an if statement in the when left shift is pressed event, doing something like lua if input.KeyCode == Enum.KeyCode.LeftShift and nope.Enabled then
if you are new then simply doing nope.Enabled checks whether it is True.

#

for determining the one second stop, you would have to implement the wait statement at the same scope at which you changed the nope.Enabled booleanvalue

long minnow
#

replace line 8 with ```lua

if input.KeyCode == Enum.KeyCode.LeftShift and nope.Enabled then```

#

and at where you disabled nope, you do a one second wait.