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

Why aren't my animations loading in a Group Game?

Asked by
OniiCh_n 410 Moderation Voter
10 years ago

So, I opened up a place on my account, and decided it was time to publish it as a Group Game to allow my brother to easily build maps, and so I could update without having to continuously switch accounts.

However, I noticed that the animations for running and jumping weren't playing. I was using custom animations for running and jumping, but they aren't loading in the Group Game. The same goes for any decals and particle images.

Script for loading animations:

01game.Players.PlayerAdded:connect(function(player)
02    player.CharacterAdded:connect(function(char)
03        if char then
04            local hum = char:FindFirstChild("Humanoid")
05            local animateScript = char:FindFirstChild("Animate")
06            animateScript.walk.WalkAnim.AnimationId = 'http://www.roblox.com/asset/?id=203185287'
07            animateScript.jump.JumpAnim.AnimationId = 'http://www.roblox.com/asset/?id=203185316'
08            animateScript.fall.FallAnim.AnimationId = 'http://www.roblox.com/asset/?id=206600697'
09        end
10    end)
11end)

Everything works fine in the original copy of the game, but not the one published as a Group Game.

Curent Active place w/ working animations

Group Game w/ broken animations

0
TIL there are "Group Animations" OniiCh_n 410 — 10y

2 answers

Log in to vote
0
Answered by 10 years ago

Animations tend to not work if you the owner of a game doesnt own them. If you created the group game, they should work. If someone else created it give them your animations and then it should work.

0
How would I give them the animations and still retain the same ID? OniiCh_n 410 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

Your link ID are not trusted

Answer this question