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

Animation will not play?

Asked by 4 years ago
Edited 4 years ago

I am currently working on a game. In this game you can vault, and i need an animation to play when you do so. Sadly, i wasn't able to make the animation play.

Script in the object to vault over (server):

01script.Parent.Touch.Touched:Connect(function(hit)
02    local humanoid = hit.Parent:FindFirstChild("Humanoid")
03    print(hit.Name.." touched.")
04    if humanoid then
05        local player = game.Players:GetPlayerFromCharacter(hit.Parent)
06 
07        hit.Parent:FindFirstChild("VaultEvent"):FireClient(player)
08 
09        print("Client has been fired")
10    end
11end)

Script in the player character:

1script.Parent.VaultEvent.OnClientEvent:Connect(function(player)
2    script.Parent:FindFirstChild("Humanoid"):LoadAnimation(script.Parent.VaultAnimation)
3    print("Animation has been played")
4end)

Any answer is appreciated!

2 answers

Log in to vote
0
Answered by 4 years ago

you forgot the play at the end

1script.Parent.VaultEvent.OnClientEvent:Connect(function(player)
2    script.Parent:FindFirstChild("Humanoid"):LoadAnimation(script.Parent.VaultAnimation):Play()
3    print("Animation has been played")
4end)
0
I guess my brain shut off. Thanks for th reply! ColdFoxy07 76 — 4y
Ad
Log in to vote
0
Answered by
mroaan 95
4 years ago

you forgot to play the animation after creating the animation track you should play it like this:

1script.Parent.VaultEvent.OnClientEvent:Connect(function(player)
2   local AnimTrack = script.Parent:FindFirstChild("Humanoid"):LoadAnimation(script.Parent.VaultAnimation)
3AnimTrack:Play()
4    print("Animation has been played")
5end)

Answer this question