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

Does anyone know the proper way to do this? Mousedown or key down for animation.

Asked by 7 years ago

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--
02local UserInputService = game:GetService("UserInputService")
03local player = game.Players.LocalPlayer
04local function onInputBegan(input)
05    if input.UserInputType == Enum.UserInputType.Keyboard then
06        local keyPressed = input.KeyCode
07    end
08 
09local Animation = script:WaitForChild("Animation")
10    if input.UserInputService == "f" or "F" then
11        Animation:Play()
12        end
13end
14UserInputService.InputBegan:connect(onInputBegan)
15--second way--
View all 58 lines...

1 answer

Log in to vote
1
Answered by 7 years ago

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
2local plr = game.Players.LocalPlayer
3local char = plr.Character
4local 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
5game: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
9end)

If you don't understand anything or it doesn't work, let me know.

0
Also, use Connect instead of connect. Ultimate_Piccolo 201 — 7y
0
The parent and children stuff should look like this. https://gyazo.com/f5fd0328ce3c0dbd8995adf085575114 Ultimate_Piccolo 201 — 7y
0
Although don't mind the "Q" tool Ultimate_Piccolo 201 — 7y
Ad

Answer this question