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

[SOLVED] Animation will not play inside of tool, no errors?

Asked by 5 years ago
Edited 5 years ago

I'm using this simple LocalScript inside of a tool inside ServerStorage being replicated to the player's backpack.

1script.Parent.Equipped:Connect(function(Mouse)
2    Mouse.Button1Down:Connect(function()
3            local animation =           game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation)
4            animation:Play()
5        print("played")
6        end)
7end)

(Sorry if formatting errors.) Every time I click, it prints "played" like it's supposed to, without any errors. I have the animation set to the highest priority; it just won't play! I've done everything I could think of! Please help!

0
It may be a problem with the animation itself being broken. I will try reanimating and see if it works. ethersend 38 — 5y

3 answers

Log in to vote
0
Answered by
seikkatsu 110
5 years ago

ok so as i am aware, mouse button 1 down event is depricated and you should use user input service you can find a lot of tutortials on yt but here's a small example:

01local uis = game:GetService("UserInputService") -- here you get the service
02uis.InputBegan:Connect(function(input) --  this is the input began event.
03                                                               -- there is also a input ended event but stick to this one                   
04                                                                   for now, until you get better
05    local mouseIn = input.UserInputType --  here you define the mouse click
06                                   --user input service tells the script that you are going
07                                                                       to want to detect a mouse input
08                                                                   -- there is also KeyCode and it's used in the same way
09    if mouseIn == Enum.UserInputType.MouseButton1 then -- here you check if the player has
10                                                                                 hit a mouse button, more specifically mb1
11 
12    end
13end)

let me know if you need any more help and don't forget to hit that accept answer button if this helped you!

0
Thanks, but i've checked the wiki and Button1Down is not deprecated. It also prints "played" when I click, so clearly this isn't the problem. [EDIT] I don't think this is the problem, but I will use it, because the wiki says to use it instead. ethersend 38 — 5y
0
Nope. Not the problem. Animation still refuses to play. Actually even worse now because "played" is printed even with the tool being unequipped. ethersend 38 — 5y
0
sooooo your problem might be the animation not the script set the priority of it to action seikkatsu 110 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Maybe try using the “Activated” function with the tool.

1script.Parent.Equipped:Connect(function()
2    script.Parent.Activated:connect(function()
3            local animation =           game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation)
4            animation:Play()
5        print("played")
6end)
7end)
Log in to vote
0
Answered by 5 years ago

Sorry for all the trouble. Turns out my animation itself was broken, and consisted of nothing. I made a new one and it works fine.

Answer this question