of     1   

oni0n
#184081769Sunday, February 21, 2016 5:17 PM GMT

I refuse to use UserInputService; please elaborate on how to make a mouse event detect a double-tap. All I know is that it uses tick() #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
Happywalker
#184081938Sunday, February 21, 2016 5:20 PM GMT

UIS:InputBegan thing = thing + 1 if thing == 2 then end thing = 0 end
oni0n
#184083401Sunday, February 21, 2016 5:40 PM GMT

"I refuse to use UserInputService" ..moron #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
darthpyro
#184083588Sunday, February 21, 2016 5:43 PM GMT

Just pick a period of time and detect whether or not that time has passed since the last click. If it hasn't, it's >1 clicks.
oni0n
#184085337Sunday, February 21, 2016 6:06 PM GMT

kthx ^ #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
JarodOfOrbiter
#184085429Sunday, February 21, 2016 6:07 PM GMT

'"I refuse to use UserInputService" ..moron' Right, you did say that. I guess we know who the moron is then. Both of you.
Hedr0n
#184085546Sunday, February 21, 2016 6:09 PM GMT

He's a moron for helping you with the correct api? And your not a moron for not using uis? Somethings fish here...
oni0n
#184085595Sunday, February 21, 2016 6:10 PM GMT

I don't enjoy using UIS. Call me idiotic for using a deprecated method (keyboard input). I don't care. ktypls #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
JarodOfOrbiter
#184085684Sunday, February 21, 2016 6:11 PM GMT

Well he is just calling Happywalker a moron for being illiterate. Being ignorant doesn't make you illiterate, so he isn't really a moron. He's just ignorant.
oni0n
#184085725Sunday, February 21, 2016 6:12 PM GMT

you see, this is why i quit the scripters forum #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
JarodOfOrbiter
#184085741Sunday, February 21, 2016 6:12 PM GMT

Because too many people are illiterate?
darthpyro
#184085867Sunday, February 21, 2016 6:14 PM GMT

Because it's full of children fighting over petty things that don't matter. Answer the question or do not.
JarodOfOrbiter
#184086205Sunday, February 21, 2016 6:19 PM GMT

So I was right?
oni0n
#184086242Sunday, February 21, 2016 6:19 PM GMT

too many stuck-up nerds #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
JarodOfOrbiter
#184086427Sunday, February 21, 2016 6:22 PM GMT

Idk, if you're too lazy to learn a modern and superior method, who am I to disagree? Ignorance is bliss, and you have the freedom of decision.
bosswalrus
#184086898Sunday, February 21, 2016 6:28 PM GMT

If you don't feel like using UIS. Just go back to your Script Builder and ask there.
oni0n
#184086908Sunday, February 21, 2016 6:28 PM GMT

"too lazy to learn a modern and superior method" Bah, UserInputService isn't superior, neither am I too lazy to learn it. I just prefer mouse events and keyboard inputs because they're much easier to use. You've lost the meaning of 'deprecation' in this scenario. It means that it's been overwritten by another, more recent method; and will not be further update. #code cout << "Truth shall sit upon the lips of a dying man" << endl; //Matthew Arnold
JarodOfOrbiter
#184087152Sunday, February 21, 2016 6:32 PM GMT

It is indeed superior. It can get nearly any key on the keyboard, and it doesn't mix special keys with numbers like KeyDown does. InputBegan allows for gamepad control too, let's see KeyDown do that. UserInputService in general allows for mobile stuff such as gyro sensors, gamepads, and VR stuff, making it already far superior.
Aethex
#184087354Sunday, February 21, 2016 6:35 PM GMT

@oni0n No further updates also means no further support. The other methods of gaining input are not guaranteed to still work, ever. ROBLOX could update and completely break KeyDown and KeyUp without worrying about having to fix them.
Happywalker
#184092121Sunday, February 21, 2016 7:43 PM GMT

Yes i'm ignorant to "f** uis" scripters
fishguy100
#184092682Sunday, February 21, 2016 7:51 PM GMT

" '"I refuse to use UserInputService" ..moron' Right, you did say that. I guess we know who the moron is then. Both of you. " All 3 of you are morons :O One is illiterate One is using outdated methods One is arguing over something stupid
killerbot29003
#184093925Sunday, February 21, 2016 8:09 PM GMT

op doesn't want to learn anything then how will you be better at scripting?KeyDown is old and breaks alot Put this into a local script: t = 0 game:GetService("UserInputService").InputBegan:connect(function(Input) if Input.KeyCode == Enum.KeyCode.Space then t = t + 1 if t == 2 then print (game.Players.LocalPlayer.Name.." has pressed space 2 times!") end wait(0.25) t = 0 end end) That is an example. This siggy is copyrighted ©

    of     1