Skip to content

dig1t/dlib

Repository files navigation

dLib Modules

dLib is a collection of modules and libraries for development in Roblox.

CI

Installing Modules (wally)

Available modules:

Animation = "dig1t/animation@1.0.1"
Badge = "dig1t/badge@1.0.1"
Cache = "dig1t/cache@1.0.3"
GamePass = "dig1t/gamepass@1.0.3"
Maid = "dig1t/maid@1.0.2"
Palette = "dig1t/palette@1.0.0"
Promise = "dig1t/promise@1.0.1"
Ragdoll = "dig1t/ragdoll@1.0.2"
Util = "dig1t/util@1.0.3"

Module Examples

Util

local ReplicatedStorage = game:GetService("ReplicatedStorage")

-- Require Util from your installation location
-- For this example we'll use ReplicatedStorage.Packages as Util's parent location
local Util = require(ReplicatedStorage.Packages.Util)

local touchPart: BasePart = workspace:WaitForChild("Plate")
local connection: RBXScriptConnection? -- onPlayerTouch returns RBXScriptConnection

connection = Util.onPlayerTouch(touchPart, function(player: Player)
	print(`{player.Name} touched the part!`)

	-- Disconnect the connection
	if connection then
		connection:Disconnect()
	end
end)

Palette

local ReplicatedStorage = game:GetService("ReplicatedStorage")

-- Require Palette from your installation location
-- For this example we'll use ReplicatedStorage.Packages as Palettes's parent location
local Palette = require(ReplicatedStorage.Packages.Palette)

print(Palette.get("blue", 500))

Promise

Method 1:

local Promise = require(ReplicatedStorage.Packages.Promise)

local myPromise: Promise.PromiseType = Promise.new(function(resolve, reject)
	resolve("Hello World!")
end)

Method 2:

local Promise = require(ReplicatedStorage.Packages.Promise)

type PromiseType = Promise.PromiseType

local myPromise: PromiseType = Promise.new(function(resolve, reject)
	resolve("Hello World!")
end)

Maid

Method 1:

local Maid = require(ReplicatedStorage.Packages.Maid)

local myMaid: Maid.MaidType = Maid.new()

Method 2:

local Maid = require(ReplicatedStorage.Packages.Maid)

type MaidType = Maid.MaidType

local myMaid: MaidType = Maid.new()

Cache

Method 1:

local Cache = require(ReplicatedStorage.Packages.Cache)

local myCache: Cache.CacheType = Cache.new()

Method 2:

local Cache = require(ReplicatedStorage.Packages.Cache)

type CacheType = Cache.CacheType

local myCache: CacheType = Cache.new()

About

Modules and Libraries for development in Roblox

Topics

Resources

License

Stars

Watchers

Forks