System.out.println can be your best friend. When my code isn't doing what I want, i liberally sprinkle them throughout. So, I would put in lines like
System.out.println("Point is " + Point);
System.out.println("result is " + result);
put those JUST after your while statement, and see what is really happening.
also, your have your terminology backwards. On the initial roll, a 4,5,6,8,9,10 becomes the point. As an experienced craps player, reading your code is hard because you are using the variable "Point" (which btw should be lowercase) to hold the result of a specific roll, and the variable "result" to hold the point.
and one other note..."die" is singular. "dice" is plural. "dices" is not a
word.