#when im in roblox studio why when i do a script then i test it the script goes away? is there a way
1 messages · Page 1 of 1 (latest)
you're testing on local side
things in server script service are only accessible via server side
Server:
ServerScriptService
ServerStorage
Client:
RemoteStorage
StarterGUI
StarterPlayer
Workspace
Players
once you load in your in the Client, meaning you cant see anything server side
https://devforum.roblox.com/t/understanding-the-difference-between-server-side-and-client-side/2589383
Brief Overview Hello, I’ve noticed that people seem to be very confused on the difference between the client and server and what a client script (LocalScript) does vs. what a ServerScript does and when to use them. Instead of copying and pasting answers, I thought it would be more helpful to have a more in-depth guide on the difference between...
When you test the game, its like playing the game like anyone else
And so
When someone plays a game we call that the client
This client is playing our game beceause he is connected to the server of our game
And so, when the client play, he cant have access to serverscriptservice, thats why you cant see it, you on client side
Instead if u change to server side, you will see it
And thats the main reason people put the script in serverscriptservice : to avoid exploiters (cuz they cant have acces to the script so they arent able to do exploits..)