Getting rid of all possible default Roblox scripts

Hello Devforum,

I am currently working on a map editor for my game, separated from the game itself, right now I am trying to get rid of as much Roblox default scripts (ControlScript, CameraScript, …) and default Roblox features (Chat, Leaderboard) and even the default Roblox character.

I was able to find and get rid of ControlScript, CameraScript, CoreGui such as chat and the player character, however are there other scripts / features I can get rid of to make the game as plain as possible?

Thank you.

Edit: I also forgot to mention that I was able to get rid of ContextActionService.

The question here is how much of a clean Roblox datamodel do you want? Some core features like the core context actions cant be removed, but others can (use the DevConsole to see these).

If you’re disabling the player’s character and CoreGui, you’ve already got a mostly clean place file, disabling the PlayerScripts doesn’t do much since these only work with an active character

As much as possible, the editor does not rely on much expect UI I made and RemoteEvents to server.

I worded my edit badly, I mean that I was able to unbind them using the UnbindAllActions()

Also, maybe you got confused CharacterScript and PlayerScripts?

Thank you for your help.