Everything was going smoothly until I attempted to load an animation; at this point I get a "Cannot Load AnimationClipProvider Service" error;
local plr = game.Players.LocalPlayer local camera = workspace.CurrentCamera local RS = game:GetService("RunService") local rStorage = game:GetService("ReplicatedStorage") local Anims = rStorage.Animations local viewModel = rStorage.DefaultView:Clone() local Animations = { ["idle"] = viewModel.AnimationController.Animator:LoadAnimation(Anims.Bare_Idle), } viewModel.Parent = camera Animations.idle:Play() RS:BindToRenderStep("ViewModel", 301, function(DT) viewModel:PivotTo(camera.CFrame ) end) end
I've looked this over and I can't seem to understand whats causing this; I have the animation controller and everything in the right place as well. Any pointers are appreciated