first commit
This commit is contained in:
31
.gitignore
vendored
Normal file
31
.gitignore
vendored
Normal 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
17
README.md
Normal 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
52
default.project.json
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/client/hello.client.luau
Normal file
1
src/client/hello.client.luau
Normal file
@@ -0,0 +1 @@
|
|||||||
|
print("Hello world, from client!")
|
||||||
1
src/server/hello.server.luau
Normal file
1
src/server/hello.server.luau
Normal file
@@ -0,0 +1 @@
|
|||||||
|
print("Hello world, from server!")
|
||||||
3
src/shared/Hello.luau
Normal file
3
src/shared/Hello.luau
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
return function()
|
||||||
|
print("Hello, world!")
|
||||||
|
end
|
||||||
4
src/shared/init.meta.json
Normal file
4
src/shared/init.meta.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"ignoredUnknownInstances": true
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user