Average
just an average individual
Average submitted a new resource:
Wait! - they don't love you like I love you
Read more about this resource...
Wait! - they don't love you like I love you
A custom wait function In srb2! If you're too lazy to manually make a timer and decrease it every second, you can use this custom wait function
Basic Principles:Wait:local function Wait(seconds) local totalTics = seconds * TICRATE local currentTic = 0 return function() currentTic = currentTic + 1 if currentTic >= totalTics then return true end return false end end
- The Wait function...
Read more about this resource...