ServerScriptService needs to load before Workspace

I need my server script inside ServerScriptService to load before a script in the workspace, if anybody could tell me how I can make the server script load before the script in workspace then it would be appreciated also if this helps this is the server code:

game.ReplicatedStorage.Code.Value = math.random(100, 999)`
1 Like

Why not just add that code to the other script?
You shouldn’t really rely on something to be added before something else.

1 Like

Maybe have the one in the Workspace disabled and the one in ServerScriptService enables it?

So in the ServerScriptService script:

workspace.YourScript.Disabled = false