I'm working on designing a game, the problem now is that while I have a code for randomizing a number, its the same series every time. This isn't good for random, to know what you're going to roll before you hit the button sucks. Is there anything to help with this?
(If this is a redundant question that has been asked before, I apologize. Just direct me in the right direction. Thanks)
Here is what my code for random looks like;
Private Sub Attack_Click()
Value = Int((6 - 0) * Rnd + 0)
A1.Caption = Int((6 - 0) * Rnd + 0)
End Sub