of     1   

NighttHawk
#182284461Sunday, January 24, 2016 4:14 AM GMT

A script that tells you how many credits you need for your next promotion. Okay.. Let's say you just joined a war clan. And your current rank is L1. During your first training, you earned 6 credits. The groups rule of ranking up for next rank L2 is 10 credits. I need a gui that shows how many credits are needed for the individuals next promotion. In this example the gui should say " You need: 4 more credits until rank: L2
cofunction
#182284503Sunday, January 24, 2016 4:15 AM GMT

LongKillKreations
#182288101Sunday, January 24, 2016 5:13 AM GMT

**** Personal Finances Help **** I need a small loan of a million dollars Please help me
LegendaryAccount
#182288775Sunday, January 24, 2016 5:26 AM GMT

Promotions = {10,20,50,100} Rank = "L0" Required = 0 for i,v in pairs(Promotions) do if player.Credits.Value > v then Rank = "L" .. i else Required = v - player.Credits.Value break end end print(player.Name,"is Rank ", Rank, "and requires",Requires,"more credits" ) Now its up to you.

    of     1