The Roblox Developer's
Secret Weapon
Oh My Prvd is a delightful framework for modern Roblox game development.
Oh My Prvd accelerates the process with providers, connecting the top-level design of your game. Choose to mix in networking and components as you need. Enjoy a development experience that fades into the background, freeing you to build faster and shout:
"Oh, My Prvd!"
Get Started · Download · Batteries included
local prvd = require("@pkg/ohmyprvd")
local CalculusProvider = require("./calculus-provider")
local MathProvider = {}
MathProvider.calculusProvider = prvd.use(CalculusProvider)
function MathProvider.add(self: typeof(MathProvider), a: number, b: number)
return self.calculusProvider.add(a, b)
end
return prvd.Provider("MathProvider", MathProvider)
Providers
Oh My Prvd introduces providers for your game logic. These provide specific
functions within your game, e.g. you might create a SaveDataProvider
to manage
save files or a CameraProvider
to handle player camera movement.
Create providers to handle the top level logic of your game:
At the end of the day, providers are just plain tables. It's easy to implement more methods, properties, and the likes into a provider:
Providers can use()
other providers. Oh My Prvd will provide its types and
figure out a corresponding load order for you:
Finally, preload your providers, then ignite Oh My Prvd, and you're off to the races: