Skip to content

Commit 63651c5

Browse files
authored
Initial commit
0 parents  commit 63651c5

10 files changed

Lines changed: 79 additions & 0 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Whitespace-only changes.

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
4+
"tasks": [
5+
{
6+
"type": "shell",
7+
"label": "Build Local Plugin",
8+
"command": "powershell -ExecutionPolicy ByPass -File build.ps1",
9+
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
}
14+
}
15+
]
16+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Rawblocky
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Plugin/init.server.luau

Whitespace-only changes.

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**Roblox Marketplace:** LINK
2+
3+
# Plugin Template
4+
5+
Description here
6+
7+
# Building
8+
9+
To build the plugin, make sure you have [Visual Studio Code](https://code.visualstudio.com) installed with the folder in this repository opened as the workspace.
10+
11+
You will also need the [Rojo](https://marketplace.visualstudio.com/items?itemName=evaera.vscode-rojo) extension installed and enabled.
12+
13+
From there you can press `Ctrl + Shift + B` inside of Visual Studio Code and the plugin should be deployed to Roblox Studio's Plugins folder!
14+
15+
# Credits
16+
17+
Plugin written by Rawblocky
18+
19+
Used [MaximumADHD's Roblox-Plugins](https://github.com/MaximumADHD/Roblox-Plugins)'s repository as a reference for how this repository is structured and the file needed to build this plugin

aftman.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file lists tools managed by Aftman, a cross-platform toolchain manager.
2+
# For more information, see https://github.com/LPGhatguy/aftman
3+
4+
# To add a new tool, add an entry to this table.
5+
[tools]
6+
rojo = "rojo-rbx/rojo@7.4.4"
7+
# rojo = "rojo-rbx/rojo@6.2.0"

build.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rojo build --output "$env:localappdata\Roblox\Plugins\Rawblocky-SubwaySurfers.rbxmx"

default.project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "RobloxPlugin-Template",
3+
"tree":
4+
{
5+
"$path": "Plugin"
6+
}
7+
}

selene.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
std = "roblox"
2+
3+
[rules]
4+
unused_variable = "allow"
5+
deprecated = "allow"
6+
selene::manual_table_clone = "allow"

0 commit comments

Comments
 (0)