bloxngDOtdrive setting up your custom in game place

** so you want to make a place for us this will teach you how to set up bloxngDOTdrive main sys**

step 1. opening the module script called system_tune
This is found in server script service
server script service>bloxngDOTdrive_sys>system_tune
its where you can find/change settings some settings cant be changed
Screenshot (207)

step 2 changeing setting’s
open system_tune

changing the sys.is_from_bloxngDOTdrive wont do anything unless we have our secret value in there wich is not visible because no-one should know that number/letter exept for ROBLOX and my dev team

sys.soft_update this sets if the soft update script should be actavated set to ture by default

sys.gamepasses sets if the game has any gamepasses these game pass ids go in the proproty below it
when you make / ask me to make a game pass for your reserved place number them like this
im using 1234567 as an example gamepass id and 7654321 as the seccont for an example
sys.gamepass1 = (" 1234567")

sys.gamepass2 = (" 7654321")

the one below that
this one sets if blox.ui is enabled if you want that to be disabled but for now its always true because thats the only thing that is ui at the time
sys.not_is_from_blox_diffrent = false

and finaly
this sets if the cusom module is able to be used and you will have to use the
custom_settings module and add your own script and you must know a lot about modules and know a bit of basic scripting
and you must include
note i put custom_settings there but you will need to do script.parent.custom_settings or where ever custom_settings is located
local sys = require(custom_settings)
and you will need the require below for the one setting that actavates it if this is not there it wont enable the script because the system makes a folder called values and puts all the settings there exept gamepasses reson i made it like this is because i wanted to
local sys = require(script.Parent.system_tune)

sys.custom = false

also dont mess with the folder called contents with i am currently adding into it as i type this
dont edit any of blox.ui if sys.not_is_from_blox_diffrent is set to true reson that would be editing our systems that I spent hours making thanks and dont forget to download one roblox plugin at a time to keep your games safe happy biulding

inportant make shure to name the custom script that you made to custom_runner if you dont custom wont work because on start up id turns evrything on and make shure custom_runner.disabled is set to true if its not it will crash the place as it trys to set it to false to actavate the script it doesent crash the the place it locks up the script so the rest wont start up i will work on fixing this problem as time goes on

ok i later found out that some things are wrong here ill update this once im done setting evrything up in the main_sys script