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

Lightsaber animations work in studio but not in-game?

Asked by 6 years ago
Edited 6 years ago

I have saved the animations as my own but they still don't work, this is how I put in the ID: https://i.gyazo.com/4d130411f0578440dab575a634dc2d91.png

Here is the animations script: local poseanim = Instance.new("Animation") poseanim.AnimationId = "http://www.roblox.com/Asset/?ID=419001089" local pose = character.Humanoid:LoadAnimation(poseanim)

local equipanim = Instance.new("Animation") equipanim.AnimationId = "http://www.roblox.com/Asset/?ID=94160581" local equip = character.Humanoid:LoadAnimation(equipanim)

local block1anim = Instance.new("Animation") block1anim.AnimationId = "http://www.roblox.com/Asset/?ID=419001012" local block1 = character.Humanoid:LoadAnimation(block1anim)

local stunanim = Instance.new("Animation") stunanim.AnimationId = "http://www.roblox.com/Asset/?ID=419001182" local stun = character.Humanoid:LoadAnimation(stunanim)

Only the block animation seems to work in game.

0
You should provide your code as text, not as an image. MightyBaconOverlord 253 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

For me, whenever something works in studio and not in the game it is a filtering enabled issue.. however it may not be your issue.

Ad

Answer this question