You can write your topic however you want, but you need to answer these questions:
The mouses position is not EVEN close to the correct position. Here is my code: local connection = runService.RenderStepped:Connect(function()
local mousePos = UIS:GetMouseLocation()
I am attempting to move the textlabels position to the mouse but its ending up off the screen because the position X and Y is over 1. Which is off the screen.
You are setting the Position’s Scale X and Y instead of the Offset. The Mouse’s position is based on AbsolutePosition (Offset). You could change it by setting the Position to Offset instead of Scale.