It’s my pleasure to announce that I’ve moved this website, ozzypig.com, to a new host: Vultr.com! After nearly 10 years on my previous host, I’ve moved to a host that gives me better speed, better uptime and most importantly: more control. I have learned so much about the web during that 10 years, and it’s finally time I take the reins.
Continue reading “A new host for ozzypig.com!”Month: August 2020
Introducing: Modules
It’s my pleasure to announce Modules, a simple dependency loader for Roblox!
Modules comes with goodies, too: Event , Maid and StateMachine classes just to name a few. These patterns are so commonplace in Roblox development today, they felt right at home to be included.
With Modules, you can require strings instead of ModuleScripts. This greatly simplifies your scripts’ dependencies and streamlines creation of client and server code.
local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Modules")) local MyModule = require("MyNamespace:MyModule")
Download: Model on Roblox.com, GitHub releases
Links: Documentation, Repository on GitHub