Okay so I'm sure you can tell by reading the code but if not I'm trying to play an animation when you press MouseButton1 or a certain key. I'm going to post all of the code I've tried and I would appreciate it some help correcting it. The first one is my most recent attempt which gave me an error of "UserInputService is not a valid member of InputObject" which I'm assuming means I can't use userinputservice for keydown. The only reason I'm using userinputservice is because this YouTube tutorial on how to do this wasn't working so I posted it and they suggested it. So I don't know maybe I'm doing all of this wrong.
01 | --first way-- |
02 | local UserInputService = game:GetService( "UserInputService" ) |
03 | local player = game.Players.LocalPlayer |
04 | local function onInputBegan(input) |
05 | if input.UserInputType = = Enum.UserInputType.Keyboard then |
06 | local keyPressed = input.KeyCode |
07 | end |
08 |
09 | local Animation = script:WaitForChild( "Animation" ) |
10 | if input.UserInputService = = "f" or "F" then |
11 | Animation:Play() |
12 | end |
13 | end |
14 | UserInputService.InputBegan:connect(onInputBegan) |
15 | --second way-- |
I can try to help you, but I'm REALLY tired so I can't really analyze your script. Anyhow, I can show you the proper way to do it.
1 | -- Local Script Inside StartPack/StarterGui |
2 | local plr = game.Players.LocalPlayer |
3 | local char = plr.Character |
4 | local animation = char.Humanoid:LoadAnimation(script:FindFirstChild( "Animation" )) -- Change "Animation" to whatever the name of your animation is and make it a child to the script |
5 | game:GetService( "UserInputService" ).InputBegan:connect( function (input) -- UIS |
6 | if input.KeyCode = = Enum.KeyCode.Q then -- when q is pressed, do stuff. (change q to whatever key you want) |
7 | animation:Play() |
8 | end |
9 | end ) |
If you don't understand anything or it doesn't work, let me know.