#how do i make a percentage text?

4 messages · Page 1 of 1 (latest)

steel tartan
#

can you show your existing script? if you have one

versed bronze
#

Isnt it pretty simple? Like this:
local PercentageUI = —your road to the UI
local guestsDiscovered = 1
local guestsToDiscover = 1567 —any number works

PercentageUI.Text = (guestsDiscovered / guestsToDiscover * 100) .. “%”

#

Simple math right?

steel tartan
#

yea