Skip to content

Instantly share code, notes, and snippets.

View deter0's full-sized avatar
🤔
school

deter deter0

🤔
school
  • Toronto
View GitHub Profile
@deter0
deter0 / signal.lua
Created January 25, 2022 18:22
Type Safe Signal Class
--!strict
--@Signal Class (deter)
--Example:
-- local mySig = Signal.new();
-- mySig:Connect(function(a: number)
-- print("A");
@deter0
deter0 / FirstPersonShadows.lua
Created August 2, 2021 22:24
Enable shadows in first person. (Roblox)
-- First Person Shadow
-- deter
-- August 2, 2021
local FirstPersonShadow = {}
function FirstPersonShadow:Start()
local RunService = game:GetService("RunService");
local Players = game:GetService("Players");