Advertisement
Guest User

Ranks

a guest
Dec 13th, 2019
1,256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local plr = script.Parent.Parent
  2.  
  3. while wait() do
  4. if plr.MoneyAll.TotalMoney.Value >= 5 then
  5. plr.Character.Head.Rank.TextLabel.Text = "Pro"
  6. plr.Character.Head.Rank.TextLabel.TextColor3 = Color3.new(0,0,255)
  7. end
  8. if plr.MoneyAll.TotalMoney.Value >= 10 then
  9. plr.Character.Head.Rank.TextLabel.Text = "Mega"
  10. plr.Character.Head.Rank.TextLabel.TextColor3 = Color3.new(67,0,7)
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement