Hello, Ive had this issue a few times within Roblox games and I have no idea why it occurs. Upon pressing play in Roblox Studio it deletes Half the things in workspace, I have no script that deletes anything from workspace as its a pretty new baseplate. I was wondering if there is any fix for this ?
This issue can be caused by several factors. Here are some steps to diagnose and potentially fix the issue:
Check for Hidden Scripts
Sometimes scripts might be hidden or embedded in objects you added from free models. Check all objects in your Workspace for any scripts that might be causing this behavior.
Review Existing Scripts
Carefully review any scripts you have to ensure none of them are causing the issue. Look for any code that manipulates or deletes parts in the Workspace.
Pay attention to lines of code that use :Destroy(), :Remove(), or similar.
Output Window
Open the Output window and observe any error messages or print statements when you press play. This can give you clues about what might be causing the issue.
Anchored Parts
Make sure that the parts you want to keep are anchored. Sometimes unanchored parts can fall or be moved.
Check Plugins
If you are using any plugins, disable them temporarily to see if the issue persists. Some plugins might have effects on your Workspace.
New Baseplate Test
Create a new, empty baseplate project and add objects one by one to see if the issue persists. This can help you identify if a specific object or script is causing the problem.
Backup and Restore
If you have a backup of your game before the issue started, try restoring it to see if the problem continues.