You can write your topic however you want, but you need to answer these questions:
- 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.
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.