> For the complete documentation index, see [llms.txt](https://bloxsql.metatable.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bloxsql.metatable.dev/get-started.md).

# Get Started

First Off let's create a ServerScript in ServerScriptService.<br>

<div align="left"><img src="/files/-MKNESCAkSCsGc6fyZdO" alt=""></div>

Now let's edit the script by right clicking on it and pressing "Open"<br>

<div align="left"><img src="/files/-MKNEfpM5a5QT23hu8PC" alt=""></div>

Now let's set up BLOXsql

```lua
-- Copyright 2020 RAMPAGE Interactive 
-- Written by: vq9o 
local BLOXsql = require(16229654720) 
local Settings= {
	-- Ensure you whitelist "141.98.74.17" with your database host.
	Username = "rampage_admin",
	Password = "1234567890",
	Host = "localhost",
	Database = "rampage_main"
}
)
```
