Can't find existing folder in ServerStorage

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

I’m trying to make some animations, but it’s erroring for something unusual.

There’s a folder named Animations in ServerStorage, but when I call it, it says it doesn’t exist.

image
image
image

I’ve tried replacing

local Animations = ServerStorage.Animations

with

local Animations = ServerStorage:WaitForChild("Animations")

and tried

local Animations = ServerStorage:FindFirstChild("Animations)

The weird thing is, it’s a really simple thing that’s erroring, and I’ve had this script for some time, and before, it didn’t error, and I haven’t ever changed this part of the script.

By the way, if you’re curious, the folder Animations in ServerStorage has a bunch of values with animation IDs, which I replace the character’s animations with them.

I’m asking for why this is erroring, or help scripting a script that changes a player’s animations.

LocalScritps does not have access to ServerStorage. Try to put the animations at ReplicatedStorage.

1 Like

I think I know the problem, did you do game.SeverStorage.Animation?
Edit:nvm