I am trying to make a click to play animation script, but it wont work! Does it not work on studio, or did I write something wrong?
1 | script.Parent.Equipped:Connect( function (Mouse) |
2 | Mouse.Buttom 1 Down:Connect( function () |
3 | local Animation = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation) |
4 | Animation:Play() |
5 | end |
6 | end ) |
Please help me if you know. Thanks alot :)
For a tool, use the tool script.Parent.Activated and Equipped does not pass a mouse. and you missed a closing bracket line 5 Also, learn how to enable the output panel, this will help you a lot
1 | script.Parent.Equipped:Connect( function () |
2 | Script.Parent.Activated:Connect( function ) |
3 | local anim = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation) |
4 | anim:Play() |
5 | end ) |
6 | end ) |
Hello. Instead of using Mouse.Button1Down
, use Tool.Activated
. A tool automatically gets activated when a player clicks while the tool is equipped. Try this:
1 | script.Parent.Activated:Connect( function () |
2 | local Animation = game:GetService( "Players" ).LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation) |
3 | Animation:Play() |
4 | end |
5 | end ) |
Try this:
1 | script.Parent.Activated:Connect( function () -- Activated is like a click, but when its equipped only. No need for the "script.Parent.Equipped:Connect(function(Mouse)" |
2 | local Animation = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation) |
3 | Animation:Play() |
4 | end |
Tell me and accept if it works