VB Code:
  1. Public Sub Form_Load()
  2. If Label1.Visible = True Then
  3.     lvl = 1
  4.     stre = 10
  5.     dex = 2
  6.     hp = 10
  7. End If
  8. level.Caption = lvl
  9. strength.Caption = stre
  10. dexterity.Caption = dex
  11. health.Caption = hp
  12. End Sub
Why aren't the labels getting the variables lvl, stre, dex and hp assigned to them? If anyone has a solution, please tell me.