Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Can you put an IntValue in ServerScriptService?

Asked by 8 years ago

I'm currently making a round timer and it uses an IntValue to work. I was curious if an IntValue can be put into ServerScriptService and still work because I want to move the round timer there.

2 answers

Log in to vote
1
Answered by 8 years ago

You shouldn't
You can touch this snake, but...

If the IntValue is only being used by the script, then it doesn't need to be an IntValue object. If it's not being used just by the script, it should probably be in ServerStorage instead.

0
Does it make any difference if the IntValue is being used by two scripts? lol DataFlame 24 — 8y
1
Stick it in ServerStorage. Keep the Script in ServerScriptService but the IntValue in ServerStorage. User#6546 35 — 8y
Ad
Log in to vote
0
Answered by
Vexture 179
8 years ago

You really shouldn't; ServerScriptService is meant for Scripts. It is preferable that you instead use ReplicatedStorageto store your round timer, assuming the players need access to that information for your timer GUI.

0
Thank you for the advice. DataFlame 24 — 8y

Answer this question