├── Gizmo ├── .editorconfig ├── README.md └── gizmo.lua ├── LICENSE ├── Network ├── Client.lua ├── Examples │ └── Example1.lua └── Server.lua ├── README.md ├── Roact └── Wormhole.lua ├── Utility ├── DuckType.lua ├── FastSpawn.lua ├── Signal.lua └── Spring.lua ├── actions ├── actions.lua └── readme.md ├── animation ├── easing.lua ├── example.lua ├── functional.lua ├── objectional.lua └── old │ └── tween.lua ├── data └── playerData.lua ├── discord-webhooks ├── example.lua └── webhooks.lua ├── gui3d └── gui3d.lua ├── manifest.json ├── misc ├── bind.lua ├── clipping.lua ├── events.lua ├── spring.lua └── switch.lua ├── setup └── init.lua ├── shift ├── readme.md ├── responder.lua └── shift.lua ├── sockets ├── client │ ├── package.lua │ └── socket.lua ├── package.lua ├── readme.md └── server.lua ├── sound └── sound.lua └── threading └── main.lua /Gizmo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Gizmo/.editorconfig -------------------------------------------------------------------------------- /Gizmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Gizmo/README.md -------------------------------------------------------------------------------- /Gizmo/gizmo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Gizmo/gizmo.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/LICENSE -------------------------------------------------------------------------------- /Network/Client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Network/Client.lua -------------------------------------------------------------------------------- /Network/Examples/Example1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Network/Examples/Example1.lua -------------------------------------------------------------------------------- /Network/Server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Network/Server.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/README.md -------------------------------------------------------------------------------- /Roact/Wormhole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Roact/Wormhole.lua -------------------------------------------------------------------------------- /Utility/DuckType.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Utility/DuckType.lua -------------------------------------------------------------------------------- /Utility/FastSpawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Utility/FastSpawn.lua -------------------------------------------------------------------------------- /Utility/Signal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Utility/Signal.lua -------------------------------------------------------------------------------- /Utility/Spring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/Utility/Spring.lua -------------------------------------------------------------------------------- /actions/actions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/actions/actions.lua -------------------------------------------------------------------------------- /actions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/actions/readme.md -------------------------------------------------------------------------------- /animation/easing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/animation/easing.lua -------------------------------------------------------------------------------- /animation/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/animation/example.lua -------------------------------------------------------------------------------- /animation/functional.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/animation/functional.lua -------------------------------------------------------------------------------- /animation/objectional.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/animation/objectional.lua -------------------------------------------------------------------------------- /animation/old/tween.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/animation/old/tween.lua -------------------------------------------------------------------------------- /data/playerData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/data/playerData.lua -------------------------------------------------------------------------------- /discord-webhooks/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/discord-webhooks/example.lua -------------------------------------------------------------------------------- /discord-webhooks/webhooks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/discord-webhooks/webhooks.lua -------------------------------------------------------------------------------- /gui3d/gui3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/gui3d/gui3d.lua -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/manifest.json -------------------------------------------------------------------------------- /misc/bind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/misc/bind.lua -------------------------------------------------------------------------------- /misc/clipping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/misc/clipping.lua -------------------------------------------------------------------------------- /misc/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/misc/events.lua -------------------------------------------------------------------------------- /misc/spring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/misc/spring.lua -------------------------------------------------------------------------------- /misc/switch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/misc/switch.lua -------------------------------------------------------------------------------- /setup/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/setup/init.lua -------------------------------------------------------------------------------- /shift/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/shift/readme.md -------------------------------------------------------------------------------- /shift/responder.lua: -------------------------------------------------------------------------------- 1 | game:GetService'ReplicatedStorage':WaitForChild'Shift'.OnClientInvoke = tick 2 | -------------------------------------------------------------------------------- /shift/shift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/shift/shift.lua -------------------------------------------------------------------------------- /sockets/client/package.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sockets/client/package.lua -------------------------------------------------------------------------------- /sockets/client/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sockets/client/socket.lua -------------------------------------------------------------------------------- /sockets/package.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sockets/package.lua -------------------------------------------------------------------------------- /sockets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sockets/readme.md -------------------------------------------------------------------------------- /sockets/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sockets/server.lua -------------------------------------------------------------------------------- /sound/sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/sound/sound.lua -------------------------------------------------------------------------------- /threading/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsharp/Roblox-Miscellaneous/HEAD/threading/main.lua --------------------------------------------------------------------------------