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):
01 | script.Parent.Touch.Touched:Connect( function (hit) |
02 | local humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
03 | print (hit.Name.. " touched." ) |
05 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
07 | hit.Parent:FindFirstChild( "VaultEvent" ):FireClient(player) |
09 | print ( "Client has been fired" ) |
Script in the player character:
1 | script.Parent.VaultEvent.OnClientEvent:Connect( function (player) |
2 | script.Parent:FindFirstChild( "Humanoid" ):LoadAnimation(script.Parent.VaultAnimation) |
3 | print ( "Animation has been played" ) |
Any answer is appreciated!