Hello. Today I found that ReplicatedStorage not working on server. In Studio and Test Server works fine, but not on standart server. I have an IntroGui in ReplicatedFirst. It works by Local scripts.
repeat wait(0.1) until game.ReplicatedStorage.Data
This string awaits until ReplicatedStorage is ready and then IntroGui load needed info from Data folder. Everything worked previously, but not now. Why? Is it Roblox problem?
You need to wait for the "Data" in ReplicatedStore like this:
repeat wait(0.1) until game.ReplicatedStorage:WaitForChild("Data") -- assuming its a tool or something