11:33:29.007 SaveData is not a valid member of ReplicatedStorage "ReplicatedStorage" - Server - Server:9
I am trying to make a save script and for some reason, it won’t find the folder. It’s there, I double checked.
This has to be some studio bug that roblox hasn’t fixed. There is absolutely nothing wrong with my script and other objects in ReplicatedStorage have no problem like this.
(And before you ask, I used :WaitForChild(). It didn’t work.)
One funny thing I can anticipate is the folder’s name having an extra space or two at the end. Studio’s UI makes spaces barely visible, this happens to me often.
(And before you ask, I used :WaitForChild() . It didn’t work.)
On another note, you wouldn’t need to do this, by the time server scripts run everything pre-existing in the server, including the server’s side of ReplicatedStorage, will be there.
Then what are you doing in the scripting support if you 100% know it’s not code related? Fix your attitude, YOU came to a forum looking for help. That’s what people are trying to do.
How is RS defined? local RS = game:GetService("ReplicatedStorage")
Could also try: local dataTemplate = RS["SaveData"]
Looks like this error is happening on the 9th line of your program, decently deep in - could we see the rest of your code (or at least the part from the start to around the error)?