Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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?

01local player = game.Players.LocalPlayer
0202  local mouse = player:GetMouse()
0303  local Character = player.Character or player.CharacterAdded:Wait()
0404  local Humanoid = Character:WaitForChild("Humanoid")
0505  local UIS = game:GetService("UserInputService")
0606  
0707  local debounce = false
0808  UIS.InputBegan:Connect(function(Input)
0909      if Input.KeyCode == Enum.KeyCode.C then
1010          if not debounce then
1111              debounce = true
1212              local Animation = Instance.new("Animation")
1313              Animation.AnimationId = "rbxassetid://4851457147"
1414              Animation.Parent = player.Character
1515              Animate = Humanoid:LoadAnimation(Animation)
View all 23 lines...

``

this is my current script and is not working.

0
Please format your code properly Twinbrotato 543 — 5y
0
yes I did it @Twinbrotato QuantumxGeneral 25 — 5y
0
What happens when you run that code and press C? Any errors in output? Twinbrotato 543 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Here's the script

01local mouse = player:GetMouse()
02local Animate
03local Humanoid = player.Character:FindFirstChild('Humanoid')
04local UIS = game:GetService("UserInputService")
05 
06UIS.InputBegan:Connect(function(io, gameProcessEvent)
07 if io.KeyCode == Enum.KeyCode.C then
08  local Animation = Instance.new("Animation", player.Character)
09  Animation.AnimationId = "rbxassetid://your id"
10  Animate = Humanoid:LoadAnimation(Animation)
11  Animate:Play()
12 end 
13end)
14UIS.InputEnded:Connect(function(io, gameProcessEvent)
15  if io.KeyCode == Enum.KeyCode.C then
16  Animate:Stop()
17 end
18end)
0
sorry but you havent defined variable for player yet QuantumxGeneral 25 — 5y
0
Getting the local player, does not work in a server script. Only in a local script, maxpax2009 340 — 5y
Ad

Answer this question