How do I make mousebutton1 have to be pressed repeatedly instead of hold?
So in my script here it all works right but if you hold mousebutton1 down it'll keep attacking which isn't what I want. I want it to be the player has to click multiple times for it to attack. This part of the script is to a 250 line all FE lightsaber script I'm making in serverscriptservice which requires no tool.
01 | game:GetService( "UserInputService" ).InputBegan:connect( function (input) |
02 | if input.UserInputType = = Enum.UserInputType.MouseButton 1 and player.Character.equipped.Value = = true and attackdebounce = = 0 and attack = = 2 then |
04 | player.Character.Humanoid:LoadAnimation(anim 2 ):Play() |
06 | game.ReplicatedStorage.Remotes.RemoteLightsaberAttack:FireServer() |