Skip to content

Instantly share code, notes, and snippets.

View filiptibell's full-sized avatar

Filip Tibell filiptibell

View GitHub Profile
@boatbomber
boatbomber / publish.yml
Last active December 15, 2023 12:42
A publishing workflow for Roblox projects
## Welcome to boatbomber's publish workflow.
# You'll need a few things in your GitHub Action secrets for this to work:
# - ROBLOSECURITY : A cookie of a Roblox account (used to install Studio for testing)
# - RBXID : Another cookie from the account (also used in Studio install)
# - PUBLISHCLOUD : A Roblox OpenCloud API key with Write permission in Place Management for your game
# This workflow assumes that you have:
# - A `aftman.toml` with rojo, wally, selene, darklua, and run-in-roblox
# - A `default.project.json` that builds a place file
@filiptibell
filiptibell / remodelTypes.d.lua
Last active November 11, 2022 19:45
Type declarations for Remodel, to be used with Luau LSP
-- Type definitions for remodel 0.11.0
declare class RemodelInstance
Name: string
ClassName: string
Parent: RemodelInstance
function Clone(self): RemodelInstance
function Destroy(self): ()
function GetChildren(self): {RemodelInstance}
function GetDescendants(self): {RemodelInstance}