function onUpdatePost()
setProperty('scoreTxt.text','Score: '..score..' • Accuracy: '..round(rating * 100, 2)..'% ['..ratingFC..'] • Combo Breaks: '..misses..' • Rank: '..ratingName..'')
end
function round(x, n)
n = math.pow(10, n or 0)
x = x * n
if x >= 0 then x = math.floor(x + 0.5) else x = math.ceil(x - 0.5) end
return x / n
end
You don't have to position it like I have in the image above but it is recommended, also make sure that it is spaced out like said image above if you want to make it easier on yourself
0 comments