Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 992 Bytes

File metadata and controls

16 lines (13 loc) · 992 Bytes

roblox-utils

Game-agnostic Roblox exploit scripting utility library.

Files

  • roblox-utils.lua — AIO utility library (all functions, ready to concatenate or use via _G)
  • roblox-scripting-guide.md — comprehensive reference guide with patterns, pitfalls, and examples

Key Principles

  1. Multi-method clicking — always try getconnections → firesignal → mousemoveabs → VIM in order
  2. VIM over FireServer — FireServer is blocked on some executors; VIM key/mouse simulation is universal
  3. Safe teleport — stepped walk at 6 studs/s, 0.8 stud steps, HRP anchored, Y-clamped
  4. Deterministic verification — snapshot state before action, verify it changed after, never blind-wait
  5. Event-driven — use .Changed/.ChildAdded listeners, poll only as fallback
  6. No goto — crashes many executors; use break + flag variables
  7. GUI rules — every GUI must have: draggable title, resize handle, copy button, ScrollingFrame, close button