Skip to content

Instantly share code, notes, and snippets.

@quad-damage
quad-damage / FlappyRifk.lua
Last active December 25, 2022 14:54
Flappy Bird style minigame for RIfk 7
------------------------------
-- FlappyRifk lua for Rifk7 --
-- by Quadruple --
-- ---------------------------
math.clamp = function(x, min, max)
if(x < min) then return min end
if(x > max) then return max end
return x
end