We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90fc056 commit 55f69c9Copy full SHA for 55f69c9
.github/workflows/release.yml
@@ -123,3 +123,8 @@ jobs:
123
run: |
124
wally publish --project-path ~/temp/metrik/ -v
125
echo "All done!"
126
+
127
+ - name: Publish NPM Package
128
+ run: |
129
+ pnpm publish --access public
130
+ echo "All done!"
src/server/events/broadcasts/topbar.ts
@@ -0,0 +1,14 @@
1
+import { IBroadcast, IData } from "../..";
2
+import { Http } from "../../../lib/http";
3
+import Icon from "@rbxts/topbar-plus";
4
5
+export function broadcastTopbar(broadcast: IBroadcast) {
6
+ const icon = new Icon();
7
8
+ icon.setLabel(broadcast.message);
9
+ icon.setMid();
10
11
+ task.wait(broadcast.duration / 1000);
12
13
+ icon.destroy();
14
+}
0 commit comments