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

How do I use animations on objects in game?

Asked by 6 years ago
Edited 6 years ago

This is a problem for me because it's not in a tool and it's not a player character it's a model but when I try to use it in game it just stops working. I don't really know why I can't figure it out but any help will be useful.

local controller = Instance.new("AnimationController")
controller.Parent = script.Parent

local fire = controller:LoadAnimation(script.Parent.Fire)
local idle = controller:LoadAnimation(script.Parent.Idle)

idle.Looped = true
fire.Looped = false

while true do
fire:Play()
idle:Play()
wait(0.3)
end

That was just a script I made out of my head but i'm still sure this won't work either way.

Please my weapon is in a model and I welded it to the camera no tools needed but in studio it works but not in game.

0
Details please: is this in a Script or a LocalScript? It should be in a Script. Does your model have a HumanoidRootPart? Overscores 381 — 6y
0
Is there an error in the output? TickTockTheory 106 — 6y
0
No there is not error and its in a normal script and it does have a humanoidrootpart thing is i cloned the model from replicated storage and none of the scripts are running in the cloned one GameBoyOtaku 63 — 6y

Answer this question