--[[
GameServices
==============================================================================================
]]-- GameServices
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ServerScriptService = game:GetService("ServerScriptService")
--[[
Const
==============================================================================================
]]-- Const
--[[
Server
==============================================================================================
]]-- Server
local ServerPath = ServerScriptService.Server
local ServerConfigs = ServerPath.Configs
local ServerScripts = ServerPath.Scripts
local ServerComponents = ServerPath.Components
--[[
Shared
==============================================================================================
]]-- Shared
local SharedPath = ReplicatedStorage.Shared
local SharedConfigs = SharedPath.Configs
local SharedScripts = SharedPath.Scripts
local SharedComponents = SharedPath.Components
--[[
Private
==============================================================================================
]]-- Private
--[[
Public
==============================================================================================
]]-- Public
i saw such a template for the codes on the server in a few places, what do you think?