How to make a script for keybind crouch animation?
Asked by
5 years ago Edited 5 years ago
I have my crouch Animation ready, But I don't know how to prepare a script for making it keybind. I
I want it such that when I press 'c', I can crouch and when I press 'c' again, I can revert back to normal position.
Can you please help me for giving me the script for that?
01 | local player = game.Players.LocalPlayer |
02 | 02 local mouse = player:GetMouse() |
03 | 03 local Character = player.Character or player.CharacterAdded:Wait() |
04 | 04 local Humanoid = Character:WaitForChild( "Humanoid" ) |
05 | 05 local UIS = game:GetService( "UserInputService" ) |
07 | 07 local debounce = false |
08 | 08 UIS.InputBegan:Connect( function (Input) |
09 | 09 if Input.KeyCode = = Enum.KeyCode.C then |
10 | 10 if not debounce then |
12 | 12 local Animation = Instance.new( "Animation" ) |
14 | 14 Animation.Parent = player.Character |
15 | 15 Animate = Humanoid:LoadAnimation(Animation) |
``
this is my current script and is not working.