pulse-rb 1.2.24 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,28 +0,0 @@
1
- layout {
2
- title = SCRIPT_NAME,
3
- author = SCRIPT_AUTHOR, -- shown as subtitle under the title
4
- toggle_key = "RightControl", -- Enum.KeyCode name — menu open/close bind
5
- size = { 850, 560 }, -- window width × height in pixels
6
- ui_library = "windui", -- "linoria" | "windui"
7
- theme = "Indigo", -- Dark Light Rose Plant Red Indigo Sky Violet Amber Emerald Midnight Crimson MonokaiPro CottonCandy Mellowsi Rainbow
8
- icon = "code-2", -- Lucide icon name, rbxassetid://, or URL
9
- folder = "{NAME}", -- executor save folder for config persistence
10
- notify_title = SCRIPT_NAME, -- notification header text
11
- transparency = 0.8, -- background transparency: 0 = opaque, 1 = fully transparent
12
- acrylic = true, -- blur effect behind window (executor must support it)
13
- open_button_mobile_only = true, -- false = show floating open button on desktop too
14
- open_button_icon = "code-2", -- Lucide icon for the floating open button
15
-
16
- -- Custom WindUI themes — entries appear in the theme dropdown automatically.
17
- -- Available fields: accent background outline text placeholder button icon
18
- themes = {
19
- -- { name = "MyTheme", accent = "#7c3aed", background = "#0e0c1a", outline = "#1e1b4b",
20
- -- text = "#e8e3ff", placeholder = "#6d6d8a", button = "#1e1b4b", icon = "#a78bfa" },
21
- },
22
-
23
- -- compat_exclude lists modules dropped from build/script.compat.obf.lua
24
- -- (the build for executors that don't support full UNC APIs).
25
- compat_exclude = {
26
- -- "player/UNC.rblua",
27
- }
28
- }
@@ -1,32 +0,0 @@
1
- component {
2
- -- ── Signals ───────────────────────────────────────────────────────────────
3
- signal enabled = false
4
-
5
- -- ── Keybind (toggle on keypress) ──────────────────────────────────────────
6
- -- keybind Enum.KeyCode.X → enabled
7
-
8
- -- ── State change handler ──────────────────────────────────────────────────
9
- on enabled {
10
- if v then
11
- -- feature activated
12
- else
13
- -- feature deactivated
14
- end
15
- }
16
-
17
- -- ── Respawn handler ───────────────────────────────────────────────────────
18
- on Respawn {
19
- -- runs every time the player's character loads
20
- }
21
-
22
- -- ── Per-frame loop ────────────────────────────────────────────────────────
23
- -- on Heartbeat when enabled {
24
- -- guard hrp
25
- -- -- 60fps logic here
26
- -- }
27
-
28
- -- ── Exported functions (callable from other components) ───────────────────
29
- func Toggle() {
30
- enabled(not enabled())
31
- }
32
- }
@@ -1,9 +0,0 @@
1
- page "Home" {
2
- groupbox left "Player" {
3
- mount SpeedHack
4
- mount FOVChanger
5
- }
6
- groupbox right "Visuals" {
7
- mount PlayerESP
8
- }
9
- }