first commit

This commit is contained in:
2026-03-06 12:01:46 +07:00
commit 8758cabc30
7 changed files with 109 additions and 0 deletions

31
.gitignore vendored Normal file
View File

@@ -0,0 +1,31 @@
# Project place file
/Nyali-2.rbxlx
# Rojo files
*.rbxlx
*.rbxl
*.rbxmx
*.rbxm
*/init.meta
# Visual Studio / VS Code files (commonly ignored in general projects)
.vscode/
.vs/
*.suo
*.user
*.config
*.lock
bin/
obj/
# Node.js dependencies (if using npm for tooling like roblox-ts)
node_modules/
package-lock.json
# macOS
.DS_Store
# Windows
Thumbs.db
# Any other local, machine-specific files that should not be shared

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# Nyali-2
Generated by [Rojo](https://github.com/rojo-rbx/rojo) 7.6.1.
## Getting Started
To build the place from scratch, use:
```bash
rojo build -o "Nyali-2.rbxlx"
```
Next, open `Nyali-2.rbxlx` in Roblox Studio and start the Rojo server:
```bash
rojo serve
```
For more help, check out [the Rojo documentation](https://rojo.space/docs).

52
default.project.json Normal file
View File

@@ -0,0 +1,52 @@
{
"name": "Nyali",
"tree": {
"$className": "DataModel",
"ReplicatedStorage": {
"$path": "src/shared"
},
"ServerScriptService": {
"$path": "src/server"
},
"StarterPlayer": {
"StarterPlayerScripts": {
"$path": "src/client"
}
},
"Workspace": {
"$properties": {
"StreamingEnabled": false
},
"Baseplate": {
"$className": "Part",
"$properties": {
"Anchored": true,
"Color": [0.38823, 0.37254, 0.38823],
"Locked": true,
"Position": [0, -10, 0],
"Size": [512, 20, 512]
}
}
},
"Lighting": {
"$properties": {
"Ambient": [0, 0, 0],
"Brightness": 2,
"GlobalShadows": true,
"Outlines": false,
"Technology": "Voxel"
}
},
"SoundService": {
"$properties": {
"RespectFilteringEnabled": true
}
}
}
}

View File

@@ -0,0 +1 @@
print("Hello world, from client!")

View File

@@ -0,0 +1 @@
print("Hello world, from server!")

3
src/shared/Hello.luau Normal file
View File

@@ -0,0 +1,3 @@
return function()
print("Hello, world!")
end

View File

@@ -0,0 +1,4 @@
{
"ignoredUnknownInstances": true
}