How to get the scales of the gui position

Hi,I have read other posts about how to find Scales of the Gui Position by script and I try it.

local Mouse = game.Players.LocalPlayer:GetMouse()

Mouse.Move:Connect(function()
    print(Mouse.X/Mouse.ViewSizeX," ",Mouse.Y/Mouse.ViewSizeY)
end)

I found that it print “0.97681376215408 1.0135869565217”
when I drag the mouse to the right bottom of the screen.

Is it possible to print the number that bigger than 1 or my script is wrong?

Scales aren’t restricted to between 0-1, they can be negative (mostly for position since you can’t have a negative size) or greater than 1. Your script does as intended, get the scale relative to where your mouse is away from the top left (0,0), so there’s nothing wrong with it

It isn’t, it’s just where the menu button, chat button and leaderboard button are at, which is on top of the usual playing screen.
Edit: Sorry I didn’t see what you meant.