Is there any way that I can create a part on the sever side without it being replicated to the clients. (without just deleting it on the client side)
1 Like
Do you mean in Workspace only?
Parts created in ServerStorage/ServerScriptService don’t get replicated, while Lighting/ReplicatedStorage gets replicated.
1 Like
yep, workspace. I am trying to create a part (parent = workspace) only on the sever side and not on the client.
1 Like
This is a method I usually used, you can try it
- Make a folder call “Server” in Workspace
- Then let LocalScript on Client Side to delete that folder
Any parts create on Server into that folder is completely ignore on Client Side.
PS - Sorry for multiple edits, it’s late night so I had to correct some wrong words.
4 Likes
if you parent a part to the camera it will simulate on the server but not get replicated to the client, so no hacky methods to delete it on the client
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.